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

46 lines
886 B
JSON
Raw Normal View History

2017-07-06 14:35:58 +02:00
{
"manifest_version": 2,
"name": "Piwik Checker",
2017-07-08 13:01:02 +02:00
"description": "__MSG_extention_description__",
2017-08-13 20:48:40 +02:00
"version": "0.1.1",
2017-07-08 13:03:13 +02:00
"devtools_page": "views/devtools.html",
2017-07-06 14:35:58 +02:00
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"http://*/*",
"https://*/*"
],
"background": {
"scripts": [
2017-07-08 13:03:13 +02:00
"js/background.js"
2017-07-06 14:35:58 +02:00
]
2017-07-07 22:54:29 +02:00
},
2017-07-08 11:15:49 +02:00
"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",
2017-07-08 13:03:13 +02:00
"default_popup": "views/popup.html"
2017-07-07 22:54:29 +02:00
},
"content_scripts": [
{
"js": [
2017-07-08 13:03:13 +02:00
"js/inject.js"
2017-07-07 22:54:29 +02:00
],
"matches": [
"*://*/*"
],
"run_at": "document_end"
}
2017-07-08 13:01:02 +02:00
],
"default_locale": "en"
2017-07-06 14:35:58 +02:00
}