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
2017-02-23 12:17:24 +01:00

29 lines
531 B
JSON

{
"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"
]
},
"options_ui": {
"page": "settings.html",
"chrome_style": true
},
"permissions": [
"storage",
"http://*/*",
"https://*/*"
]
}