Close other tabs

Browser extension to close other tabs

Close other tabsคืออะไร?

Close other tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nunofaria11 และคุณลักษณะหลักของมันคือ "Browser extension to close other tabs"

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

screenshot
screenshot

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

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

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

                        A simple extension that provides a quick way of closing every other tab in window.                    

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

ชื่อ Close other tabs Close other tabs
ID cohclepbfkicjacnladehmbiepoaobmm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/cohclepbfkicjacnladehmbiepoaobmm
คำอธิบาย Browser extension to close other tabs
ขนาดไฟล์ 5.51 KB
จำนวนการติดตั้ง 33
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2019-11-08
วันที่เผยแพร่ 2019-11-08
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา nunofaria11
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/nunofaria11/close-other-tabs-ext
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close other tabs",
    "version": "1.0.2",
    "description": "Browser extension to close other tabs",
    "author": "Nuno Faria",
    "homepage_url": "https:\/\/github.com\/nunofaria11\/close-other-tabs-ext",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/close_16.png",
            "32": "icons\/close_32.png",
            "64": "icons\/close_64.png"
        }
    },
    "icons": {
        "16": "icons\/close_16.png",
        "32": "icons\/close_32.png",
        "64": "icons\/close_64.png"
    }
}