86 lines
1.8 KiB
JSON
86 lines
1.8 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "LinkedIn Job Analyzer",
|
|
"version": "1.5.0",
|
|
"description": "AI-powered job analysis + smart comment generator for LinkedIn — personal use",
|
|
"permissions": [
|
|
"storage",
|
|
"activeTab",
|
|
"scripting",
|
|
"clipboardWrite",
|
|
"microphone"
|
|
],
|
|
"host_permissions": [
|
|
"https://www.linkedin.com/*",
|
|
"https://claude.ai/*",
|
|
"https://cv.intaleqapp.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"
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://www.linkedin.com/feed/",
|
|
"https://www.linkedin.com/feed/*",
|
|
"https://www.linkedin.com/"
|
|
],
|
|
"js": [
|
|
"post_feed.js"
|
|
],
|
|
"css": [
|
|
"post_feed.css"
|
|
],
|
|
"run_at": "document_idle"
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://www.linkedin.com/search/results/people/*",
|
|
"https://www.linkedin.com/search/results/all/*"
|
|
],
|
|
"js": [
|
|
"search_analyzer.js"
|
|
],
|
|
"css": [
|
|
"search_analyzer.css"
|
|
],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [
|
|
"speech.html",
|
|
"speech.js"
|
|
],
|
|
"matches": ["<all_urls>"]
|
|
}
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
} |