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 là gì?
Disable Download Bar là một tiện ích mở rộng Chrome được phát triển bởi https://indowwindows.com, và tính năng chính của nó là "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Disable Download Bar
Tải xuống các tệp mở rộng Disable Download Bar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Disable Download Bar |
ID | nhdeokdadlelojjohmmpjjdjbhgimohi |
URL Chính Thức | https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi |
Mô tả | Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it. |
Kích Thước Tệp | 8.46 KB |
Số Lần Cài Đặt | 426 |
Phiên Bản Hiện Tại | 0.0.1.1 |
Cập Nhật Lần Cuối | 2019-07-29 |
Ngày Phát Hành | 2019-07-29 |
Đánh Giá | 2.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://indowwindows.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |