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 https://indowwindows.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Disable Download Bar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
    }
}