tridactyl/src/manifest.json
Oliver Blanthorn ebc222e042
release 1.20.3
2020-11-28 12:18:48 +01:00

126 lines
No EOL
3.8 KiB
JSON

{
"manifest_version": 2,
"name": "Tridactyl",
"version": "1.20.3",
"version_name": "1.20.3",
"icons": {
"64": "static/logo/Tridactyl_64px.png",
"100": "static/logo/Tridactyl_100px.png",
"150": "static/logo/Tridactyl_150px.png"
},
"background": {
"scripts": [
"background.js"
]
},
"chrome_url_overrides": {
"newtab": "static/newtab.html"
},
"commands": {
"command_1": {
"suggested_key": {
"default": "MacCtrl+Comma"
},
"description": "Internal use. See `:help bind`. Use `:bind --mode=browser` to change - do not change here."
},
"command_2": {
"suggested_key": {
"default": "MacCtrl+6",
"windows": "Alt+6"
},
"description": "Internal use. See `:help bind`. Use `:bind --mode=browser` to change - do not change here."
},
"command_3": {
"description": "Internal use. See `:help bind`. Use `:bind --mode=browser` to change - do not change here.",
"suggested_key": {
"default": "MacCtrl+Shift+6"
}
},
"command_4": {
"description": "Internal use. See `:help bind`. Use `:bind --mode=browser` to change - do not change here."
},
"command_5": {
"description": "Internal use. See `:help bind`. Use `:bind --mode=browser` to change - do not change here."
},
"command_6": {
"description": "Internal use. See `:help bind`. Use `:bind --mode=browser` to change - do not change here."
},
"command_7": {
"description": "Internal use. See `:help bind`. Use `:bind --mode=browser` to change - do not change here."
},
"command_8": {
"description": "Internal use. See `:help bind`. Use `:bind --mode=browser` to change - do not change here."
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"static/css/cleanslate.css",
"static/css/content.css",
"static/css/hint.css",
"static/css/viewsource.css"
],
"run_at": "document_start",
"match_about_blank": true
}
],
"content_security_policy": "script-src 'unsafe-eval' 'self'; object-src 'self'",
"web_accessible_resources": [
"static/commandline.html",
"static/defaultFavicon"
],
"permissions": [
"activeTab",
"bookmarks",
"browsingData",
"contextMenus",
"contextualIdentities",
"cookies",
"clipboardWrite",
"clipboardRead",
"downloads",
"find",
"history",
"search",
"sessions",
"storage",
"tabs",
"topSites",
"management",
"nativeMessaging",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"applications": {
"gecko": {
"id": "tridactyl.vim.betas@cmcaine.co.uk",
"strict_min_version": "68.0"
}
},
"options_ui": {
"page": "static/docs/classes/_src_lib_config_.default_config.html",
"open_in_tab": true
},
"sidebar_action": {
"default_icon": {
"64": "static/logo/Tridactyl_64px.png",
"100": "static/logo/Tridactyl_100px.png",
"150": "static/logo/Tridactyl_150px.png"
},
"default_title": "Tridactyl sidebar",
"default_panel": "static/newtab.html",
"browser_style": false,
"open_at_install": false
},
"omnibox": {
"keyword": "tri"
}
}