58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Slop Farmer",
|
|
"version": "0.5.1",
|
|
|
|
"author": "Jack Case",
|
|
"description": "Crowd-source AI slop pages and domains",
|
|
|
|
"permissions": [
|
|
"activeTab",
|
|
"storage",
|
|
"webNavigation",
|
|
"*://*.duckduckgo.com/*"
|
|
],
|
|
|
|
"content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self'",
|
|
|
|
"browser_action": {
|
|
"default_title": "Slop Farmer",
|
|
"default_popup": "pages/action_popup.html",
|
|
"default_area": "navbar",
|
|
"theme_icons": [
|
|
{
|
|
"dark": "icons/virus_black_16.png",
|
|
"light": "icons/virus_white_16.png",
|
|
"size": 16
|
|
},
|
|
{
|
|
"dark": "icons/virus_black_32.png",
|
|
"light": "icons/virus_white_32.png",
|
|
"size": 32
|
|
}
|
|
]
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["scripts/report-slop.js"],
|
|
"type": "module"
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.duckduckgo.com/*q=*"],
|
|
"js": ["scripts/content-script.js"]
|
|
}
|
|
],
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"data_collection_permissions": {
|
|
"required": [
|
|
"authenticationInfo",
|
|
"personallyIdentifyingInfo"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
} |