Files
slop-farmer-extension/manifest.json
2025-10-25 11:27:20 -04:00

37 lines
820 B
JSON

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