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

27 lines
698 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": {
"128": "img/icon_128.png"
},
"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": {
"default_icon": "img/icon.png",
"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" ],
"default_locale": "en"
2014-07-26 08:22:51 +02:00
}