Close Other Tabs

Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts.

Close Other Tabsคืออะไร?

Close Other Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.facebook.com/browservery และคุณลักษณะหลักของมันคือ "Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts."

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

screenshot

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

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

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

                        Allows you to close other tabs with one click on the extension icon. Right-clicking on the same icon brings context menu with additional options ("Close tabs to the right" and "Close tabs to the left"). 

The extension also supports keyboard shortcuts. Go to chrome://extensions/shortcuts to set them.
----------------------------------------------------------------
🖼️ Follow my Facebook page (more extensions): https://bit.ly/browservery
----------------------------------------------------------------
The icon image used in the extension: https://www.iconfinder.com/icons/309090/close_cross_delete_icon
The color and size of the image were changed.                    

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

ชื่อ Close Other Tabs Close Other Tabs
ID higiahnfphokonkjalljdfgjhafdjbil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/close-other-tabs/higiahnfphokonkjalljdfgjhafdjbil
คำอธิบาย Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts.
ขนาดไฟล์ 17.42 KB
จำนวนการติดตั้ง 2,925
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2022-07-05
วันที่เผยแพร่ 2019-11-18
คะแนน 4.67/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา https://www.facebook.com/browservery
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://bit.ly/browservery
URL หน้าช่วยเหลือ https://bit.ly/browservery-support
URL หน้านโยบายความเป็นส่วนตัว https://github.com/loftyshaky/extensions-privacy-policy/blob/main/extensions-privacy-policy.md
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "description": "__MSG_desc__",
    "version": "0.3.0",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "32": "icons\/icon32.png",
            "64": "icons\/icon64.png"
        }
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "commands": {
        "close_other_tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "__MSG_close_other_tabs__"
        },
        "close_tabs_to_the_right": {
            "suggested_key": {
                "default": "Ctrl+Shift+3"
            },
            "description": "__MSG_close_tabs_to_the_right__"
        },
        "close_tabs_to_the_left": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "__MSG_close_tabs_to_the_left__"
        }
    }
}