radai-api / extension /manifest.json
RageCoder2006's picture
Clean deployment for Hugging Face
879d39c
Raw
History Blame Contribute Delete
523 Bytes
{
"manifest_version": 3,
"name": "RADAI",
"version": "2.0",
"description": "Detect AI-generated images on webpages.",
"permissions": [
"activeTab",
"tabs",
"scripting",
"storage",
"sidePanel"
],
"host_permissions": [
"http://127.0.0.1:5000/*"
],
"action": {},
"side_panel": {
"default_path": "sidepanel.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}