Disable Download Bar
Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
Was ist Disable Download Bar?
Disable Download Bar ist eine Chrome-Erweiterung, die von https://indowwindows.com entwickelt wurde, und ihr Hauptmerkmal ist "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.".
Erweiterungsscreenshots
Disable Download Bar-Erweiterungs-CRX-Datei herunterladen
Laden Sie Disable Download Bar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Disable Download Bar |
ID | nhdeokdadlelojjohmmpjjdjbhgimohi |
Offizielle URL | https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi |
Beschreibung | Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it. |
Dateigröße | 8.46 KB |
Installationsanzahl | 426 |
Aktuelle Version | 0.0.1.1 |
Letztes Update | 2019-07-29 |
Veröffentlichungsdatum | 2019-07-29 |
Bewertung | 2.00/5 Insgesamt 8 Bewertungen |
Entwickler | https://indowwindows.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } } |