Disable Download Bar

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

Wat is Disable Download Bar?

Disable Download Bar is een Chrome-extensie ontwikkeld door https://indowwindows.com, en de belangrijkste functie is "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Disable Download Bar

Download Disable Download Bar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Disable Download Bar Disable Download Bar
ID nhdeokdadlelojjohmmpjjdjbhgimohi
Officiële URL https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi
Beschrijving Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
Bestandsgrootte 8.46 KB
Aantal Installaties 426
Huidige Versie 0.0.1.1
Laatst Bijgewerkt 2019-07-29
Publicatiedatum 2019-07-29
Beoordeling 2.00/5 Totaal 8 Beoordelingen
Ontwikkelaar https://indowwindows.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
    }
}