35 lines
837 B
JSON
35 lines
837 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Slop Farmer",
|
|
"version": "0.3",
|
|
|
|
"author": "Jack Case",
|
|
"description": "Crowd-source AI slop pages and domains",
|
|
|
|
"permissions": [
|
|
"activeTab",
|
|
"storage",
|
|
"webNavigation",
|
|
"*://*.duckduckgo.com/*"
|
|
],
|
|
|
|
"content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self' blob:",
|
|
|
|
"browser_action": {
|
|
"default_icon": "icons/virus-slash.png",
|
|
"default_title": "Slop Farmer",
|
|
"default_popup": "pages/action_popup.html"
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["scripts/report-slop.js"],
|
|
"type": "module"
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.duckduckgo.com/*q=*"],
|
|
"js": ["scripts/content-script.js"]
|
|
}
|
|
]
|
|
} |