1
0
mirror of https://github.com/MatMoul/quickdial-webext.git synced 2026-02-26 04:27:48 +00:00

First commit

This commit is contained in:
2017-09-27 22:16:38 +02:00
parent 2273c5e2ca
commit 4b6977d14b
16 changed files with 759 additions and 0 deletions

42
src/manifest.json Normal file
View File

@@ -0,0 +1,42 @@
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "0.0.2",
"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"
},
"options_ui": {
"page": "options.html"
},
"applications": {
"gecko": {
"id": "mat@matmoul.com_quickdial_test_3",
"strict_min_version": "52.0"
}
},
"default_locale": "en"
}