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.
piwik-chrome-extention/manifest.json

30 lines
531 B
JSON
Raw Normal View History

2016-08-25 12:22:02 +02:00
{
"manifest_version": 2,
"icons": {
"16": "icons/logo16.png",
"48": "icons/logo48.png",
"128": "icons/logo128.png"
},
"name": "Piwik Counter",
"description": "Description",
"version": "0.1",
"browser_action": {
"default_icon": "icons/logo38.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"main.js"
]
},
2017-02-23 12:17:24 +01:00
"options_ui": {
"page": "settings.html",
"chrome_style": true
},
2016-08-25 12:22:02 +02:00
"permissions": [
"storage",
"http://*/*",
"https://*/*"
]
}