1
0
mirror of https://github.com/MatMoul/quickdial-webext.git synced 2024-12-26 00:46:12 +00:00
quickdial-webext/src/manifest.json

51 lines
902 B
JSON
Raw Normal View History

2017-09-27 20:16:38 +00:00
{
"manifest_version": 2,
2017-09-29 22:05:33 +00:00
"name": "Quick Dial",
2017-10-14 21:12:38 +00:00
"version": "0.1.2",
2017-10-04 00:13:48 +00:00
"author": "MatMoul",
"homepage_url": "https://github.com/MatMoul/quickdial-webext",
"developer": {
"name": "MatMoul",
"url": "https://github.com/MatMoul/quickdial-webext"
},
2017-09-27 20:16:38 +00:00
"description": "__MSG_extensionDescription__",
"icons": {
"24": "img/24.png",
"32": "img/32.png"
},
"permissions": [
"storage",
"bookmarks",
"contextMenus",
"tabs",
"<all_urls>"
],
2017-10-01 19:27:06 +00:00
2017-09-27 20:16:38 +00:00
"background": {
"scripts": ["js/background.js"]
},
2017-10-14 17:33:20 +00:00
"browser_action": {
"default_icon": {
"24": "img/24.png",
"32": "img/32.png"
}
},
2017-09-27 20:16:38 +00:00
"chrome_url_overrides" : {
"newtab": "dial"
},
"applications": {
"gecko": {
"id": "quickdial@matmoul.com",
2017-09-27 20:16:38 +00:00
"strict_min_version": "52.0"
}
},
"default_locale": "en"
}