cloudfuck/manifest.json

30 lines
730 B
JSON

{
"manifest_version": 2,
"name": "Cloudfuck",
"version": "1.0",
"description": "Adds an icons next to the search results to indicate pages that uses Cloudflare. Detection is performed by checking a DNS record.",
"browser_specific_settings": {
"gecko": {
"id": "{66abaf41-20a3-48da-bafb-1eef7f75ec57}"
}
},
"icons": {
"64": "images/pure-evil.png"
},
"permissions": [
"dns"
],
"background": {
"scripts": ["background-script.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"]
}
],
"web_accessible_resources": [
"images/check.png"
]
}