55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Agent Police Department",
|
|
"version": "1.0.0",
|
|
"description": "A police dashboard for your team's AI coding agents — real-time governance, audit trails, and policy violation alerts.",
|
|
"permissions": [
|
|
"storage",
|
|
"activeTab",
|
|
"tabs",
|
|
"scripting"
|
|
],
|
|
"host_permissions": [
|
|
"https://claude.ai/*",
|
|
"https://*.claude.ai/*",
|
|
"https://github.com/*",
|
|
"https://chatgpt.com/*",
|
|
"https://chat.openai.com/*",
|
|
"https://cursor.sh/*",
|
|
"https://*.cursor.sh/*"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://claude.ai/*",
|
|
"https://*.claude.ai/*",
|
|
"https://github.com/*",
|
|
"https://chatgpt.com/*",
|
|
"https://chat.openai.com/*",
|
|
"https://cursor.sh/*",
|
|
"https://*.cursor.sh/*"
|
|
],
|
|
"js": ["content_script.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon16.jpg",
|
|
"48": "icons/icon48.jpg",
|
|
"128": "icons/icon128.jpg"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.jpg",
|
|
"48": "icons/icon48.jpg",
|
|
"128": "icons/icon128.jpg"
|
|
},
|
|
"options_page": "options.html"
|
|
}
|