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
2017-08-25 15:24:35 +02:00

25 lines
680 B
JSON

{
"manifest_version": 2,
"name": "Piwik Injector",
"short_name": "piwik-injector",
"version": "3.0.0",
"author": "Lukas Winkler, xcv58, hromadadan",
"description": "Run custom JavaScript on any website.",
"icons": {
"128": "img/icon_128.png"
},
"content_scripts": [ {
"js": [ "lib/api.js" ],
"matches": [ "all_urls>" ]
}, {
"all_frames": true,
"js": [ "lib/run.js" ],
"matches": [ "all_urls>" ]
} ],
"browser_action": {
"default_icon": "img/icon.png",
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [ "storage", "http://*/", "https://*/", "tabs" ]
}