Fox.ci_Chrome_Extension/Fox.ci_Chrome_Extension/manifest.json

38 lines
816 B
JSON
Executable File

{
"name": "Fox.ci",
"version": "0.0.4",
"manifest_version": 2,
"description": "Fox.ci URL Shortener",
"homepage_url": "http://fox.ci",
"background": {
"page": "src/background.html",
"persistent": false
},
"browser_action": {
"default_icon": "icons/icon19.png",
"default_title": "Fox.ci URL Shortener"
},
"permissions": [
"<all_urls>",
"tabs",
"clipboardWrite",
"contextMenus",
"notifications"
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"web_accessible_resources": [
"icons/icon16.png",
"icons/icon48.png",
"icons/icon128.png"
],
"commands": {
"shortenTab": {
"suggested_key": { "default": "Alt+Shift+L" },
"description": "Shortens Current Tab"
}
}
}