add content-script and file to manifest

this will be what interacts with a search result page to flag links to slop
This commit is contained in:
Jack Case
2025-10-16 20:31:11 +00:00
parent c0e3f58401
commit ccd9a0ec87
2 changed files with 8 additions and 1 deletions

View File

@@ -14,5 +14,12 @@
"scripts": ["scripts/report-slop.js"], "scripts": ["scripts/report-slop.js"],
"persistent": false, "persistent": false,
"type": "module" "type": "module"
} },
"content_scripts": [
{
"matches": ["*://*.duckduckgo.com/*"],
"js": ["scripts/hide-slop.js"]
}
]
} }

0
scripts/hide-slop.js Normal file
View File