Close download bar

Closes the download bar via hotkey.

Close download bar क्या है?

Close download bar Snackbits द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Closes the download bar via hotkey."।

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

screenshot

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

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

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

                        Tired of closing the download bar after every download with the little close button in the right corner?
Because Google couldn't handle to add a simple little hotkey for that, I gave you this extension to close it with ALT+W.
You don't like the hotkey? Just change it ;)

*****************************
RELEASE NOTES
*****************************
v.1.2.0
- Added option to also delete download history

v.1.1.1
- Migration for Chrome Manifest V3 support                    

एक्सटेंशन की मूल जानकारी

नाम Close download bar Close download bar
ID bkfclmjddajodogcbpohgfpdkgdecgmg
आधिकारिक URL https://chromewebstore.google.com/detail/close-download-bar/bkfclmjddajodogcbpohgfpdkgdecgmg
विवरण Closes the download bar via hotkey.
फ़ाइल का आकार 14.61 KB
स्थापना संख्या 6,171
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2023-01-19
प्रकाशन तिथि 2019-09-23
रेटिंग 4.62/5 कुल 34 रेटिंग्स
डेवलपर Snackbits
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "short_name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.2.0",
    "default_locale": "en",
    "author": "WebIT-Service",
    "minimum_chrome_version": "88",
    "icons": {
        "16": "assets\/icon-16x16.png",
        "32": "assets\/icon-32x32.png",
        "48": "assets\/icon-48x48.png",
        "128": "assets\/icon-128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "downloads",
        "downloads.shelf",
        "storage"
    ],
    "action": {
        "default_title": "__MSG_actionTitle__",
        "default_icon": "assets\/icon-16x16.png",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "commands": {
        "close-download-bar": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "__MSG_closeHotkey__"
        }
    }
}