Close Other Tabs

Close all OTHER tabs!

Close Other Tabsคืออะไร?

Close Other Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Delaney Garcia และคุณลักษณะหลักของมันคือ "Close all OTHER tabs!"

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

screenshot
screenshot

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

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

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

                        When chrome phased out the 'close other tabs' functionality, I was bummed... so we made this extension which re-enables that functionality.

When you click the extension icon, it should close all other tabs you have open. It will not close the active tab, nor will it close pinned tabs.

I hope this saves you time like it did for us!                    

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

ชื่อ Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
คำอธิบาย Close all OTHER tabs!
ขนาดไฟล์ 17.36 KB
จำนวนการติดตั้ง 46
เวอร์ชันปัจจุบัน 1.02
อัปเดตครั้งล่าสุด 2019-11-18
วันที่เผยแพร่ 2019-11-15
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Delaney Garcia
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Other Tabs",
    "description": "Close all OTHER tabs!",
    "version": "1.02",
    "homepage_url": "https:\/\/foobar.com",
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Close OTHER tabs!",
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "manifest_version": 2
}