Close All Tabs On Left

Closes all tabs on the left of current tab

ما هو Close All Tabs On Left؟

Close All Tabs On Left هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Closes all tabs on the left of current tab".

تحميل ملف CRX للإضافة Close All Tabs On Left

قم بتنزيل ملفات الامتداد Close All Tabs On Left بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        A very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.                    

معلومات أساسية عن التمديد

الاسم Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
عنوان URL الرسمي https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
الوصف Closes all tabs on the left of current tab
حجم الملف 6.72 KB
عدد التثبيتات 1,286
النسخة الحالية 1.2
آخر تحديث 2018-04-20
تاريخ النشر 2018-04-20
تقييم 5.00/5 مجموع تقييمات 8
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close All Tabs On Left",
    "description": "Closes all tabs on the left of current tab",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "close-all-left-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+Q",
                "mac": "Alt+Shift+Q"
            },
            "description": "Close all tabs on the left of current tab"
        }
    },
    "permissions": [
        "tabs"
    ]
}