Files
slop-farmer-extension/manifest.json
2025-10-16 18:48:34 -04:00

32 lines
666 B
JSON

{
"manifest_version": 2,
"name": "Slop Farmer",
"version": "0.1",
"description": "Crowd-source AI slop pages and domains",
"permissions": [
"activeTab",
"storage",
"webNavigation"
],
"page_action": {
"default_icon": "icons/virus-slash.png",
"default_title": "report slop",
"show_matches": ["<all_urls>"]
},
"background": {
"scripts": ["scripts/report-slop.js"],
"persistent": false,
"type": "module"
},
"content_scripts": [
{
"matches": ["*://*.duckduckgo.com/*"],
"js": ["scripts/hide-slop.js"]
}
]
}