Files
slop-farmer-extension/manifest.json
Jack Case ccd9a0ec87 add content-script and file to manifest
this will be what interacts with a search result page to flag links to slop
2025-10-16 20:31:11 +00:00

25 lines
533 B
JSON

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