Close Unpinned Tabs

Close all unpinned tabs with a short cut "Alt + Shift + O"

ما هو Close Unpinned Tabs؟

Close Unpinned Tabs هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Close all unpinned tabs with a short cut "Alt + Shift + O"".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Close Unpinned Tabs

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

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

                        Allows you to set a shortcut to close all unpinned tabs and pin/unpin an existing tab from the current window. Alt+Shift+O is the default to close tabs Alt + Shift + P to pin/unpin a tab.                    

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

الاسم Close Unpinned Tabs Close Unpinned Tabs
ID ajijmjelflcpkaapmddfoklcamplblpb
عنوان URL الرسمي https://chromewebstore.google.com/detail/close-unpinned-tabs/ajijmjelflcpkaapmddfoklcamplblpb
الوصف Close all unpinned tabs with a short cut "Alt + Shift + O"
حجم الملف 293 KB
عدد التثبيتات 115
النسخة الحالية 0.2
آخر تحديث 2019-09-05
تاريخ النشر 2019-09-05
تقييم 4.50/5 مجموع تقييمات 2
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Unpinned Tabs",
    "version": "0.2",
    "description": "Close all unpinned tabs with a short cut \"Alt + Shift + O\"",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "broom.png",
            "32": "broom.png",
            "48": "broom.png",
            "128": "broom128.png"
        },
        "default_title": "Clutter"
    },
    "commands": {
        "toggle_pin": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "Toggle if the pin is tabbed"
        },
        "close_unpinned": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Close all tabs excepts pinned ones"
        }
    },
    "manifest_version": 2
}