mirror of
https://github.com/MatMoul/quickdial-webext.git
synced 2024-12-23 15:36:12 +00:00
44 lines
788 B
JSON
44 lines
788 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "Quick Dial",
|
|
"version": "0.0.2",
|
|
"author": "MatMoul",
|
|
"homepage_url": "https://github.com/MatMoul/quickdial-webext",
|
|
"developer": {
|
|
"name": "MatMoul",
|
|
"url": "https://github.com/MatMoul/quickdial-webext"
|
|
},
|
|
"description": "__MSG_extensionDescription__",
|
|
|
|
"icons": {
|
|
"24": "img/24.png",
|
|
"32": "img/32.png"
|
|
},
|
|
|
|
"permissions": [
|
|
"storage",
|
|
"bookmarks",
|
|
"contextMenus",
|
|
"tabs",
|
|
"<all_urls>"
|
|
],
|
|
|
|
"background": {
|
|
"scripts": ["js/background.js"]
|
|
},
|
|
|
|
"chrome_url_overrides" : {
|
|
"newtab": "dial"
|
|
},
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "quickdial@matmoul.com",
|
|
"strict_min_version": "52.0"
|
|
}
|
|
},
|
|
|
|
"default_locale": "en"
|
|
}
|