Initial commit
This commit is contained in:
commit
ef2f7aeaaa
22 changed files with 566 additions and 0 deletions
31
manifest.json
Normal file
31
manifest.json
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Detect Cloudflare",
|
||||
"homepage_url": "https://git.massivebox.net/massivebox/cf-detect-chrome",
|
||||
"description": "Adds an icon to the toolbar which indicates whether the current page uses Cloudflare. If it does, the icon changes color. Detection is performed by analyzing the response headers of all requests.",
|
||||
"version": "0.7",
|
||||
"icons": {
|
||||
"16": "icons/cf-grey-16.png",
|
||||
"32": "icons/cf-grey-32.png",
|
||||
"64": "icons/cf-grey-64.png"
|
||||
},
|
||||
"permissions": [
|
||||
"webRequest",
|
||||
"webNavigation",
|
||||
"tabs",
|
||||
"<all_urls>"
|
||||
],
|
||||
"background": {
|
||||
"scripts": [ "background.js" ]
|
||||
},
|
||||
"browser_action": {
|
||||
"browser_style": true,
|
||||
"default_title": "Indicates whether this page uses Cloudflare",
|
||||
"default_icon": {
|
||||
"16": "icons/cf-grey-16.png",
|
||||
"32": "icons/cf-grey-32.png",
|
||||
"64": "icons/cf-grey-64.png"
|
||||
},
|
||||
"default_popup": "popup.html"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue