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.
擴展基本資訊
名稱 | Disable Download Bar |
ID | nhdeokdadlelojjohmmpjjdjbhgimohi |
官方網址 | 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 } } |