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

48 lines
949 B
JSON
Raw Permalink Normal View History

2014-05-07 13:56:35 +02:00
{
"manifest_version": 2,
2017-09-02 21:14:37 +02:00
"name": "__MSG_extension_name__",
2018-04-04 11:45:12 +02:00
"short_name": "matomo-injector",
2019-11-22 19:57:08 +01:00
"version": "4.0.0",
2017-08-25 15:24:35 +02:00
"author": "Lukas Winkler, xcv58, hromadadan",
2017-09-02 21:14:37 +02:00
"description": "__MSG_extension_description__",
2017-08-25 15:24:35 +02:00
"icons": {
2017-08-27 20:49:16 +02:00
"128": "img/logo-128x128.png",
"256": "img/logo-256x256.png"
2017-08-25 15:24:35 +02:00
},
2017-08-27 20:06:02 +02:00
"content_scripts": [
{
"all_frames": true,
"js": [
"js/run.js"
],
"matches": [
"<all_urls>"
]
}
],
2014-05-07 13:56:35 +02:00
"browser_action": {
2017-08-27 20:49:16 +02:00
"default_icon": {
"128": "img/logo-128x128.png",
"256": "img/logo-256x256.png"
},
2014-05-07 13:56:35 +02:00
"default_popup": "popup.html"
2017-08-25 15:24:35 +02:00
},
2017-08-27 20:06:02 +02:00
"permissions": [
"storage",
"http://*/",
"https://*/",
"tabs"
],
2017-08-26 18:37:56 +02:00
"default_locale": "en",
"applications": {
"gecko": {
2017-09-01 20:18:27 +02:00
"id": "{59f7eef0-6361-4f57-9e7c-7fdbd6a33710}",
2017-08-26 18:37:56 +02:00
"strict_min_version": "42.0"
}
2017-09-02 21:14:37 +02:00
},
"options_ui": {
"page": "options.html",
"chrome_style": false
2017-08-27 20:06:02 +02:00
}
}