Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabsคืออะไร?

Ctrl+W Don't Close Pinned Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Etaoin Wu และคุณลักษณะหลักของมันคือ "Ctrl+W Don't Close Pinned Tabs"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ctrl+W Don't Close Pinned Tabs

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

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

                        This Chrome extension simulates Firefox's behavior on the hotkey Ctrl-W on a pinned tab; it does NOT close the tab. Instead, it navigate to the first non-pinned tab.

Usage: You need to *explicitly* bind the key to ctrl-W in "Keyboard Shortcuts" in chrome://extensions/ to use the functionality (as in the screenshot). This is not possible to do automatically.

Source: https://github.com/EtaoinWu/smart-ctrl-w                    

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

ชื่อ Ctrl+W Don't Close Pinned Tabs Ctrl+W Don't Close Pinned Tabs
ID moidkadjmcagbnndbjdipocbdkcoknil
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/ctrl+w-dont-close-pinned/moidkadjmcagbnndbjdipocbdkcoknil
คำอธิบาย Ctrl+W Don't Close Pinned Tabs
ขนาดไฟล์ 8.5 KB
จำนวนการติดตั้ง 139
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2022-02-14
วันที่เผยแพร่ 2021-05-15
คะแนน 3.67/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Etaoin Wu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/EtaoinWu/smart-ctrl-w
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ctrl+W Don't Close Pinned Tabs",
    "version": "1.0.0",
    "description": "Ctrl+W Don't Close Pinned Tabs",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Etaoin Wu ",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "smart-ctrl-w": {
            "suggested_key": {
                "default": "Ctrl+W",
                "mac": "Command+W"
            },
            "description": "Close This Tab (Bind to Ctrl+W)"
        }
    },
    "minimum_chrome_version": "33"
}