Close Other Tabs

Close all OTHER tabs!

Apa itu Close Other Tabs?

Close Other Tabs adalah ekstensi Chrome yang dikembangkan oleh Delaney Garcia, dan fitur utamanya adalah "Close all OTHER tabs!".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Close Other Tabs

Unduh file ekstensi Close Other Tabs dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
URL Resmi https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
Deskripsi Close all OTHER tabs!
Ukuran File 17.36 KB
Jumlah Instalasi 46
Versi Saat Ini 1.02
Terakhir Diperbarui 2019-11-18
Tanggal Publikasi 2019-11-15
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Delaney Garcia
Tipe Pembayaran free
Bahasa yang Didukung 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
}