Close download bar

Closes the download bar via hotkey.

Close download bar란 무엇입니까?

Close download bar은(는) Snackbits에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Closes the download bar via hotkey."입니다.

확장 프로그램 스크린샷

screenshot

Close download bar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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__"
        }
    }
}