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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}