Files
agentjacking-attacks-trick-…/manifest.json
T

30 lines
756 B
JSON

{
"manifest_version": 3,
"name": "Agentjacking Shield",
"version": "1.0.0",
"description": "Detect and block agentjacking attacks that trick AI coding agents into running malicious code",
"permissions": ["activeTab", "storage", "notifications"],
"action": {
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/content.ts"],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "src/background.ts"
}
}