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.
matomo-injector/manifest.json

32 lines
809 B
JSON
Raw Normal View History

2014-05-07 13:56:35 +02:00
{
"manifest_version": 2,
2017-08-25 15:24:35 +02:00
"name": "Piwik Injector",
"short_name": "piwik-injector",
"version": "3.0.0",
"author": "Lukas Winkler, xcv58, hromadadan",
2017-08-25 19:44:16 +02:00
"description": "__MSG_extention_description__",
2017-08-25 15:24:35 +02:00
"icons": {
2017-08-26 18:48:38 +02:00
"128": "img/icon256.png"
2017-08-25 15:24:35 +02:00
},
"content_scripts": [ {
"js": [ "js/api.js" ],
2017-08-25 19:44:16 +02:00
"matches": [ "<all_urls>" ]
}, {
2014-05-13 13:39:11 +02:00
"all_frames": true,
"js": [ "js/run.js" ],
2017-08-25 19:44:16 +02:00
"matches": [ "<all_urls>" ]
2017-08-25 15:24:35 +02:00
} ],
2014-05-07 13:56:35 +02:00
"browser_action": {
2017-08-26 18:48:38 +02:00
"default_icon": "img/icon256.png",
2014-05-07 13:56:35 +02:00
"default_popup": "popup.html"
2017-08-25 15:24:35 +02:00
},
"content_security_policy": "script-src 'self'; object-src 'self'",
2017-08-25 19:44:16 +02:00
"permissions": [ "storage", "http://*/", "https://*/", "tabs" ],
2017-08-26 18:37:56 +02:00
"default_locale": "en",
"applications": {
"gecko": {
"id": "tempid@lw1.at",
"strict_min_version": "42.0"
}
}}