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

34 lines
678 B
JSON
Raw Normal View History

2014-05-07 13:56:35 +02:00
{
"manifest_version": 2,
"name": "Custom JavaScript for websites ",
"short_name": "customjs",
2014-05-07 13:56:35 +02:00
"description": "Run custom JavaScript on any website.",
2014-06-17 10:44:29 +02:00
"version": "2.1.2",
2014-05-07 13:56:35 +02:00
"permissions": [
2014-06-18 11:52:09 +02:00
"storage",
2014-05-07 13:56:35 +02:00
"http://*/",
"https://*/",
"tabs"
],
2014-05-07 13:56:35 +02:00
"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"]
}, {
2014-05-13 13:39:11 +02:00
"all_frames": true,
"matches": ["<all_urls>"],
"js": ["lib/run.js"]
}],
2014-05-07 13:56:35 +02:00
"browser_action": {
"default_icon": "img/icon.png",
"default_popup": "popup.html"
}
}