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

40 lines
743 B
JSON
Raw Normal View History

2014-05-07 13:56:35 +02:00
{
"manifest_version": 2,
2017-08-27 09:32:05 +02:00
"name": "__MSG_extention_name__",
2017-08-25 15:24:35 +02:00
"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": {
2017-08-26 18:48:38 +02:00
"128": "img/icon256.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-26 18:48:38 +02:00
"default_icon": "img/icon256.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": {
"id": "tempid@lw1.at",
"strict_min_version": "42.0"
}
2017-08-27 20:06:02 +02:00
}
}