Files
pbakaus_impeccable/extension/manifest.json
T
2026-08-26 11:02:54 +05:00

44 lines
890 B
JSON

{
"manifest_version": 3,
"name": "Impeccable",
"description": "Detect common UI anti-patterns in any web page",
"version": "1.3.3",
"permissions": [
"activeTab",
"scripting",
"storage",
"webNavigation"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background/service-worker.js"
},
"devtools_page": "devtools/devtools.html",
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"detector/detect.js"
],
"matches": [
"<all_urls>"
]
}
]
}