Disable Download Bar
Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
Co to jest Disable Download Bar?
Disable Download Bar to rozszerzenie Chrome opracowane przez https://indowwindows.com, a jego główną funkcją jest „Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Disable Download Bar
Pobierz pliki rozszerzeń Disable Download Bar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Disable Download Bar |
ID | nhdeokdadlelojjohmmpjjdjbhgimohi |
Oficjalny URL | https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi |
Opis | Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it. |
Rozmiar pliku | 8.46 KB |
Liczba instalacji | 426 |
Aktualna Wersja | 0.0.1.1 |
Ostatnia Aktualizacja | 2019-07-29 |
Data Publikacji | 2019-07-29 |
Ocena | 2.00/5 Łącznie 8 Oceny |
Deweloper | https://indowwindows.com |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } } |