Close download bar

Closes the download bar via hotkey.

Qu'est-ce que Close download bar ?

Close download bar est une extension Chrome développée par Snackbits, et sa fonction principale est "Closes the download bar via hotkey.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Close download bar

Téléchargez les fichiers d'extension Close 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

                        Tired of closing the download bar after every download with the little close button in the right corner?
Because Google couldn't handle to add a simple little hotkey for that, I gave you this extension to close it with ALT+W.
You don't like the hotkey? Just change it ;)

*****************************
RELEASE NOTES
*****************************
v.1.2.0
- Added option to also delete download history

v.1.1.1
- Migration for Chrome Manifest V3 support                    

Informations de Base sur l'Extension

Nom Close download bar Close download bar
ID bkfclmjddajodogcbpohgfpdkgdecgmg
URL Officiel https://chromewebstore.google.com/detail/close-download-bar/bkfclmjddajodogcbpohgfpdkgdecgmg
Description Closes the download bar via hotkey.
Taille du Fichier 14.61 KB
Nombre d'Installations 6,171
Version Actuelle 1.2.0
Dernière Mise à Jour 2023-01-19
Date de Publication 2019-09-23
Évaluation 4.62/5 Total 34 Évaluations
Développeur Snackbits
Email [email protected]
Type de Paiement free
Langues Prises en Charge de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "short_name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.2.0",
    "default_locale": "en",
    "author": "WebIT-Service",
    "minimum_chrome_version": "88",
    "icons": {
        "16": "assets\/icon-16x16.png",
        "32": "assets\/icon-32x32.png",
        "48": "assets\/icon-48x48.png",
        "128": "assets\/icon-128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "downloads",
        "downloads.shelf",
        "storage"
    ],
    "action": {
        "default_title": "__MSG_actionTitle__",
        "default_icon": "assets\/icon-16x16.png",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "commands": {
        "close-download-bar": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "__MSG_closeHotkey__"
        }
    }
}