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
2014-07-27 15:20:02 +02:00

34 lines
680 B
JSON

{
"manifest_version": 2,
"name": "Custom JavaScript for websites ",
"short_name": "customjs",
"description": "Run custom JavaScript on any website.",
"version": "2.1.40",
"permissions": [
"storage",
"http://*/",
"https://*/",
"tabs"
],
"icons": { "128": "img/icon_128.png" },
"content_security_policy": "script-src 'self' https://*.googleapis.com; object-src 'self'",
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["lib/api.js"]
}, {
"all_frames": true,
"matches": ["<all_urls>"],
"js": ["lib/run.js"]
}],
"browser_action": {
"default_icon": "img/icon.png",
"default_popup": "popup.html"
}
}