Close Other Tabs

Close all OTHER tabs!

Co to jest Close Other Tabs?

Close Other Tabs to rozszerzenie Chrome opracowane przez Delaney Garcia, a jego główną funkcją jest „Close all OTHER tabs!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Close Other Tabs

Pobierz pliki rozszerzeń Close Other Tabs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
Oficjalny URL https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
Opis Close all OTHER tabs!
Rozmiar pliku 17.36 KB
Liczba instalacji 46
Aktualna Wersja 1.02
Ostatnia Aktualizacja 2019-11-18
Data Publikacji 2019-11-15
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Delaney Garcia
Typ Płatności free
Obsługiwane Języki 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
}