Disable Download Bar
Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
Vad är Disable Download Bar?
Disable Download Bar är en Chrome-tillägg utvecklad av https://indowwindows.com, och dess huvudfunktion är "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.".
Tilläggsskärmbilder
Ladda ner Disable Download Bar-förlängningens CRX-fil
Ladda ner Disable Download Bar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Disable Download Bar |
ID | nhdeokdadlelojjohmmpjjdjbhgimohi |
Officiell webbadress | https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi |
Beskrivning | Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it. |
Filstorlek | 8.46 KB |
Antal Installationer | 426 |
Aktuell Version | 0.0.1.1 |
Senast Uppdaterad | 2019-07-29 |
Publiceringsdatum | 2019-07-29 |
Betyg | 2.00/5 Totalt 8 Betyg |
Utvecklare | https://indowwindows.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } } |