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