vibeguard/public/manifest.firefox.json

20 lines
817 B
JSON

{
"manifest_version": 2,
"name": "VibeGuard",
"version": "0.1.0",
"description": "Hide toxic social-media posts locally.",
"icons": {
"16": "icons/logo16.png",
"32": "icons/logo32.png",
"48": "icons/logo48.png",
"64": "icons/logo64.png",
"96": "icons/logo96.png",
"128": "icons/logo128.png"
},
"browser_action": { "default_icon": "icons/logo32.png", "default_popup": "popup.html" },
"permissions": ["storage", "tabs", "alarms", "<all_urls>"],
"background": { "scripts": ["background.js"], "persistent": true },
"content_scripts": [{ "matches": ["<all_urls>"], "js": ["content.js"], "run_at": "document_idle" }],
"options_ui": { "page": "options.html", "open_in_tab": true },
"web_accessible_resources": ["inference.js", "models/toxicity/*", "models/toxicity/onnx/*"]
}