Disable Download Bar
Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
Co je Disable Download Bar?
Disable Download Bar je rozšíření Chrome vyvinuté https://indowwindows.com, a jeho hlavní funkcí je „Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Disable Download Bar
Stáhněte si soubory rozšíření Disable Download Bar ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Disable Download Bar |
ID | nhdeokdadlelojjohmmpjjdjbhgimohi |
Oficiální URL | https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi |
Popis | Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it. |
Velikost souboru | 8.46 KB |
Počet instalací | 426 |
Aktuální Verze | 0.0.1.1 |
Poslední Aktualizace | 2019-07-29 |
Datum Vydání | 2019-07-29 |
Hodnocení | 2.00/5 Celkem 8 Hodnocení |
Vývojář | https://indowwindows.com |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } } |