34 lines
862 B
JSON
34 lines
862 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|