This commit is contained in:
Matěj Kubíček
2026-09-02 20:38:45 +02:00
parent 0c524ed6af
commit c7948a788a
46 changed files with 10099 additions and 152 deletions
+44
View File
@@ -0,0 +1,44 @@
{
"manifest_version": 3,
"name": "SlopDetect",
"version": "0.3.2",
"description": "Automatically inspect AI provenance and flag common generated-site patterns.",
"browser_specific_settings": {
"gecko": {
"id": "slopdetect@local",
"strict_min_version": "140.0",
"data_collection_permissions": {
"required": ["none"]
}
},
"gecko_android": {
"strict_min_version": "142.0"
}
},
"permissions": ["storage"],
"host_permissions": ["http://*/*", "https://*/*"],
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["content.js"],
"run_at": "document_idle"
}],
"background": {
"scripts": ["background.js"]
},
"action": {
"default_title": "Scan this page with SlopDetect",
"default_popup": "popup.html",
"default_icon": "icons/icon.svg"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; worker-src 'self'; object-src 'self'"
}
}