Close other tabs

Browser extension to close other tabs

Co to jest Close other tabs?

Close other tabs to rozszerzenie Chrome opracowane przez nunofaria11, a jego główną funkcją jest „Browser extension to close 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

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

Podstawowe informacje o rozszerzeniu

Nazwa Close other tabs Close other tabs
ID cohclepbfkicjacnladehmbiepoaobmm
Oficjalny URL https://chrome.google.com/webstore/detail/cohclepbfkicjacnladehmbiepoaobmm
Opis Browser extension to close other tabs
Rozmiar pliku 5.51 KB
Liczba instalacji 33
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2019-11-08
Data Publikacji 2019-11-08
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper nunofaria11
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/nunofaria11/close-other-tabs-ext
Obsługiwane Języki 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"
    }
}