Disable Download Bar

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

Hvad er Disable Download Bar?

Disable Download Bar er en Chrome-udvidelse udviklet af https://indowwindows.com, og dens hovedfunktion er "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.".

Udvidelsesskærmbilleder

screenshot

Download Disable Download Bar-udvidelses-CRX-fil

Download Disable Download Bar-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Disable Download Bar Disable Download Bar
ID nhdeokdadlelojjohmmpjjdjbhgimohi
Officiel URL https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi
Beskrivelse Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
Filstørrelse 8.46 KB
Antal Installationer 426
Nuværende Version 0.0.1.1
Senest Opdateret 2019-07-29
Udgivelsesdato 2019-07-29
Bedømmelse 2.00/5 Samlet 8 Bedømmelser
Udvikler https://indowwindows.com
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
    }
}