Add initial VibeGuard browser extension
This commit is contained in:
parent
f251f0f8ce
commit
9c65a61ebb
43 changed files with 125275 additions and 2 deletions
12
public/manifest.chromium.json
Normal file
12
public/manifest.chromium.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"manifest_version": 3,
|
||||
"name": "VibeGuard",
|
||||
"version": "0.1.0",
|
||||
"description": "Hide toxic social-media posts locally.",
|
||||
"permissions": ["storage", "tabs", "offscreen"],
|
||||
"host_permissions": ["https://*.reddit.com/*", "https://*.x.com/*", "https://*.twitter.com/*", "https://*.facebook.com/*"],
|
||||
"background": { "service_worker": "background.js", "type": "module" },
|
||||
"content_scripts": [{ "matches": ["https://*.reddit.com/*", "https://*.x.com/*", "https://*.twitter.com/*", "https://*.facebook.com/*"], "js": ["content.js"], "run_at": "document_idle" }],
|
||||
"options_page": "options.html",
|
||||
"web_accessible_resources": [{ "resources": ["inference.js", "models/*"], "matches": ["<all_urls>"] }]
|
||||
}
|
||||
Loading…
Reference in a new issue