Disable Download Bar

Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.

Cos'è Disable Download Bar?

Disable Download Bar è un'estensione di Chrome sviluppata da https://indowwindows.com, e la sua funzione principale è "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Disable Download Bar

Scarica i file di estensione Disable Download Bar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Disable Download Bar Disable Download Bar
ID nhdeokdadlelojjohmmpjjdjbhgimohi
URL Ufficiale https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi
Descrizione Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
Dimensione del File 8.46 KB
Conteggio Installazioni 426
Versione Corrente 0.0.1.1
Ultimo Aggiornamento 2019-07-29
Data di Pubblicazione 2019-07-29
Valutazione 2.00/5 Totale 8 Valutazioni
Sviluppatore https://indowwindows.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
    }
}