1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
piwik-checker/manifest.json
2017-07-08 13:03:13 +02:00

45 lines
884 B
JSON

{
"manifest_version": 2,
"name": "Piwik Checker",
"description": "__MSG_extention_description__",
"version": "0.1",
"devtools_page": "views/devtools.html",
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"http://*/*",
"https://*/*"
],
"background": {
"scripts": [
"js/background.js"
]
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"page_action": {
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png"
},
"default_title": "Piwik Checker",
"default_popup": "views/popup.html"
},
"content_scripts": [
{
"js": [
"js/inject.js"
],
"matches": [
"*://*/*"
],
"run_at": "document_end"
}
],
"default_locale": "en"
}