Initial commit: LinkedIn Analyzer with Gemini 2.5 Flash and PHP Backend
This commit is contained in:
33
manifest.json
Normal file
33
manifest.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "LinkedIn Job Analyzer",
|
||||
"version": "1.0.0",
|
||||
"description": "AI-powered job analysis tool for LinkedIn — personal use",
|
||||
"permissions": ["storage", "activeTab", "scripting"],
|
||||
"host_permissions": [
|
||||
"https://www.linkedin.com/*",
|
||||
"https://generativelanguage.googleapis.com/*"
|
||||
],
|
||||
"content_scripts": [{
|
||||
"matches": ["https://www.linkedin.com/jobs/*"],
|
||||
"js": ["prompts.js", "content.js"],
|
||||
"css": ["overlay.css"],
|
||||
"run_at": "document_idle"
|
||||
}],
|
||||
"action": {
|
||||
"default_popup": "popup.html",
|
||||
"default_icon": {
|
||||
"16": "icons/icon16.png",
|
||||
"48": "icons/icon48.png",
|
||||
"128": "icons/icon128.png"
|
||||
}
|
||||
},
|
||||
"background": {
|
||||
"service_worker": "background.js"
|
||||
},
|
||||
"icons": {
|
||||
"16": "icons/icon16.png",
|
||||
"48": "icons/icon48.png",
|
||||
"128": "icons/icon128.png"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user