Close Multiple Tabs

Close Tabs to Right/Left/Other With a Shortcut Key

Close Multiple Tabsคืออะไร?

Close Multiple Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nicholas Hsiang และคุณลักษณะหลักของมันคือ "Close Tabs to Right/Left/Other With a Shortcut Key"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Close Multiple Tabs

ดาวน์โหลดไฟล์ส่วนขยาย Close Multiple Tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        # Close Multiple Tabs

Close all tabs of the browser "left/right/other" by shortcut.

## Configure shortcut keys

Enter `chrome://extensions/shortcuts` in the browser address bar to configure shortcut keys:


- `Alt+Shift+R`, Close Tabs to right
- `Alt+Shift+L`, Close Tabs to left
- `Alt+Shift+O`, Close other Tabs

It is recommended to use it with WGestures, it is so cool.

---

# 关闭多个标签

通过快捷键方式关闭浏览器“左侧/右侧/其它”所有标签页。

## 配置按键

在浏览器地址栏输入 `chrome://extensions/shortcuts`,配置按键:

- `Alt+Shift+R`, 关闭右侧标签页
- `Alt+Shift+L`, 关闭左侧标签页
- `Alt+Shift+O`, 关闭其它标签页

建议搭配 WGestures 用,爽得不要不要的。                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Close Multiple Tabs Close Multiple Tabs
ID acpnjejgmplmdjiogpejdonndpleeank
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/close-multiple-tabs/acpnjejgmplmdjiogpejdonndpleeank
คำอธิบาย Close Tabs to Right/Left/Other With a Shortcut Key
ขนาดไฟล์ 9.99 KB
จำนวนการติดตั้ง 64
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-06-30
วันที่เผยแพร่ 2022-06-13
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Nicholas Hsiang
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/xianghongai/Chrome-Close-Multiple-Tabs
URL หน้านโยบายความเป็นส่วนตัว https://xinlu.ink/privacy
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.1",
    "manifest_version": 3,
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "close-right-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+R"
            },
            "description": "__MSG_closeTabsToRight__"
        },
        "close-left-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "__MSG_closeTabsToLeft__"
        },
        "close-other-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "__MSG_closeOtherTabs__"
        }
    },
    "icons": {
        "16": "art16.png",
        "32": "art32.png",
        "48": "art48.png",
        "128": "art128.png"
    }
}