Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ScamShield - AI Job Scam Detector",
"version": "1.0.0",
"description": "AI-powered protection against job scams with real-time analysis and alerts",
"permissions": [
"storage",
"tabs",
"notifications"
],
"host_permissions": [
"https:\/\/*.linkedin.com\/*",
"https:\/\/*.indeed.com\/*",
"https:\/\/*.ziprecruiter.com\/*",
"https:\/\/*.glassdoor.com\/*",
"https:\/\/*.monster.com\/*",
"https:\/\/*.careerbuilder.com\/*",
"https:\/\/*.dice.com\/*",
"https:\/\/*.angel.co\/*",
"https:\/\/*.wellfound.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.linkedin.com\/*",
"https:\/\/*.indeed.com\/*",
"https:\/\/*.ziprecruiter.com\/*",
"https:\/\/*.glassdoor.com\/*",
"https:\/\/*.monster.com\/*",
"https:\/\/*.careerbuilder.com\/*",
"https:\/\/*.dice.com\/*",
"https:\/\/*.angel.co\/*",
"https:\/\/*.wellfound.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "ScamShield Protection Status"
},
"icons": {
"16": "icons\/AI_Job_Scanner_Logo1.png",
"48": "icons\/AI_Job_Scanner_Logo1.png",
"128": "icons\/AI_Job_Scanner_Logo1.png"
},
"web_accessible_resources": [
{
"resources": [
"ai-models\/*",
"patterns\/*"
],
"matches": [
"<all_urls>"
]
}
]
}