working on imports, maybe not worth it for the content script, it can't be an es module

This commit is contained in:
Jack Case
2025-11-06 01:38:17 +00:00
parent 83bc5190a7
commit 8cc0f3aa64
6 changed files with 25 additions and 18 deletions

View File

@@ -20,13 +20,15 @@
},
"background": {
"scripts": ["scripts/report-slop.js"]
"scripts": ["scripts/report-slop.js"],
"type": "module"
},
"content_scripts": [
{
"matches": ["*://*.duckduckgo.com/*q=*"],
"js": ["scripts/hide-slop.js"]
"js": ["scripts/hide-slop.js"],
"type":"module"
}
]
}