Close Tab Shortcut

Customize chrome shortcut to close current tab

Close Tab Shortcutคืออะไร?

Close Tab Shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Stanley Guevara และคุณลักษณะหลักของมันคือ "Customize chrome shortcut to close current tab"

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

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

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

                        Simple extension for closing active tab.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

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

ชื่อ Close Tab Shortcut Close Tab Shortcut
ID oohndijkoieelbpmfehjecdihiiaecgb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/oohndijkoieelbpmfehjecdihiiaecgb
คำอธิบาย Customize chrome shortcut to close current tab
ขนาดไฟล์ 3.21 KB
จำนวนการติดตั้ง 11
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-10-16
วันที่เผยแพร่ 2016-10-16
ผู้พัฒนา Stanley Guevara
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/stanleyguevara/chrome-close-tab-shortcut
URL หน้าช่วยเหลือ https://github.com/stanleyguevara/chrome-close-tab-shortcut
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to close current tab",
    "commands": {
        "close-tab": {
            "suggested_key": {
                "default": "Alt+X",
                "mac": "Ctrl+X"
            },
            "description": "Close current tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}