Close Other Tabs

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

Cos'è Close Other Tabs?

Close Other Tabs è un'estensione di Chrome sviluppata da https://www.facebook.com/browservery, e la sua funzione principale è "Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Close Other Tabs

Scarica i file di estensione Close Other Tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Close Other Tabs Close Other Tabs
ID higiahnfphokonkjalljdfgjhafdjbil
URL Ufficiale https://chromewebstore.google.com/detail/close-other-tabs/higiahnfphokonkjalljdfgjhafdjbil
Descrizione Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts.
Dimensione del File 17.42 KB
Conteggio Installazioni 2,925
Versione Corrente 0.3.0
Ultimo Aggiornamento 2022-07-05
Data di Pubblicazione 2019-11-18
Valutazione 4.67/5 Totale 12 Valutazioni
Sviluppatore https://www.facebook.com/browservery
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://bit.ly/browservery
URL della Pagina di Aiuto https://bit.ly/browservery-support
URL della Pagina della Politica sulla Privacy https://github.com/loftyshaky/extensions-privacy-policy/blob/main/extensions-privacy-policy.md
Lingue Supportate 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__"
        }
    }
}