initial commit
This commit is contained in:
59
manifest.json
Normal file
59
manifest.json
Normal file
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"name": "misctils",
|
||||
"version": "1.0",
|
||||
"description": "Miscelanious Utils for Firefox",
|
||||
"icons": {
|
||||
"16": "icons/misc.png",
|
||||
"32": "icons/misc.png",
|
||||
"64": "icons/misc.png",
|
||||
"128": "icons/misc.png",
|
||||
"256": "icons/misc.png"
|
||||
},
|
||||
"manifest_version": 2,
|
||||
"permissions": [ "menus", "activeTab", "tabs", "nativeMessaging", "storage" ],
|
||||
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "misc@tils",
|
||||
"strict_min_version": "58.0"
|
||||
}
|
||||
},
|
||||
|
||||
"background": {
|
||||
"scripts": [ "background.js" ],
|
||||
"persistent": false
|
||||
},
|
||||
"chrome_settings_overrides" : {
|
||||
"homepage": "startpage/index.html"
|
||||
},
|
||||
"chrome_url_overrides" : {
|
||||
"newtab": "startpage/index.html"
|
||||
},
|
||||
|
||||
"commands": {
|
||||
"toggle-pin-tab": {
|
||||
"suggested_key": { "default": "Alt+P" },
|
||||
"description": "Pin the currently active tab."
|
||||
},
|
||||
"tab-up": {
|
||||
"suggested_key": { "default": "Alt+K" },
|
||||
"description": "Switch tab focus to one up."
|
||||
},
|
||||
"tab-down": {
|
||||
"suggested_key": { "default": "Alt+J" },
|
||||
"description": "Switch tab focus to one down."
|
||||
},
|
||||
"tab-close": {
|
||||
"suggested_key": { "default": "Alt+C" },
|
||||
"description": "Close the current tab."
|
||||
},
|
||||
"scroll-half-down": {
|
||||
"suggested_key": { "default": "Alt+D" },
|
||||
"description": "Scroll down half a page."
|
||||
},
|
||||
"scroll-half-up": {
|
||||
"suggested_key": { "default": "Alt+U" },
|
||||
"description": "Scroll up half a page."
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user