Disable Download Bar
Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
什么是Disable Download Bar?
Disable Download Bar是由https://indowwindows.com开发的Chrome扩展程序,该扩展的主要功能是“Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.”。
扩展截图
下载Disable Download Bar扩展crx文件
下载Disable Download Bar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple extension that adds a "close download tray" keyboard shortcut to Chrome, along with an option to prevent the tray from appearing in the first place. 扩展基本信息
| 名称 | |
| ID | nhdeokdadlelojjohmmpjjdjbhgimohi |
| 官方URL | https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi |
| 简介 | Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it. |
| 文件大小 | 8.46 KB |
| 安装次数 | 426 |
| 当前版本 | 0.0.1.1 |
| 更新时间 | 2019-07-29 |
| 上架时间 | 2019-07-29 |
| 评分 | 2.00/5 共8次评分 |
| 开发者 | https://indowwindows.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Disable Download Bar",
"description": "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.",
"version": "0.0.1.1",
"icons": {
"48": "icon48.png",
"128": "icon.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"commands": {
"tray-close": {
"suggested_key": {
"default": "Alt+K"
},
"description": "Close download tray."
},
"open-mostrecentfile": {
"suggested_key": {
"default": "Alt+J"
},
"description": "Open most recent download."
}
},
"permissions": [
"storage",
"downloads",
"downloads.open",
"downloads.shelf"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
} | |