Disable Download Bar

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

Τι είναι το Disable Download Bar;

Το Disable Download Bar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://indowwindows.com, και η κύρια λειτουργία του είναι "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Disable Download Bar

Λήψη αρχείων επέκτασης Disable Download Bar σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Disable Download Bar Disable Download Bar
ID nhdeokdadlelojjohmmpjjdjbhgimohi
Επίσημο URL https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi
Περιγραφή Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
Μέγεθος Αρχείου 8.46 KB
Αριθμός Εγκαταστάσεων 426
Τρέχουσα Έκδοση 0.0.1.1
Τελευταία Ενημέρωση 2019-07-29
Ημερομηνία Δημοσίευσης 2019-07-29
Αξιολόγηση 2.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής https://indowwindows.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
    }
}