Disable Download Bar
Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
Qu'est-ce que Disable Download Bar ?
Disable Download Bar est une extension Chrome développée par https://indowwindows.com, et sa fonction principale est "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Disable Download Bar
Téléchargez les fichiers d'extension Disable Download Bar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Disable Download Bar |
ID | nhdeokdadlelojjohmmpjjdjbhgimohi |
URL Officiel | https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi |
Description | Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it. |
Taille du Fichier | 8.46 KB |
Nombre d'Installations | 426 |
Version Actuelle | 0.0.1.1 |
Dernière Mise à Jour | 2019-07-29 |
Date de Publication | 2019-07-29 |
Évaluation | 2.00/5 Total 8 Évaluations |
Développeur | https://indowwindows.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |