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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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