Close Multiple Tabs

Close Tabs to Right/Left/Other With a Shortcut Key

Cos'è Close Multiple Tabs?

Close Multiple Tabs è un'estensione di Chrome sviluppata da Nicholas Hsiang, e la sua funzione principale è "Close Tabs to Right/Left/Other With a Shortcut Key".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Close Multiple Tabs

Scarica i file di estensione Close Multiple 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

                        # Close Multiple Tabs

Close all tabs of the browser "left/right/other" by shortcut.

## Configure shortcut keys

Enter `chrome://extensions/shortcuts` in the browser address bar to configure shortcut keys:


- `Alt+Shift+R`, Close Tabs to right
- `Alt+Shift+L`, Close Tabs to left
- `Alt+Shift+O`, Close other Tabs

It is recommended to use it with WGestures, it is so cool.

---

# 关闭多个标签

通过快捷键方式关闭浏览器“左侧/右侧/其它”所有标签页。

## 配置按键

在浏览器地址栏输入 `chrome://extensions/shortcuts`,配置按键:

- `Alt+Shift+R`, 关闭右侧标签页
- `Alt+Shift+L`, 关闭左侧标签页
- `Alt+Shift+O`, 关闭其它标签页

建议搭配 WGestures 用,爽得不要不要的。                    

Informazioni di Base sull'Estensione

Nome Close Multiple Tabs Close Multiple Tabs
ID acpnjejgmplmdjiogpejdonndpleeank
URL Ufficiale https://chromewebstore.google.com/detail/close-multiple-tabs/acpnjejgmplmdjiogpejdonndpleeank
Descrizione Close Tabs to Right/Left/Other With a Shortcut Key
Dimensione del File 9.99 KB
Conteggio Installazioni 64
Versione Corrente 1.1
Ultimo Aggiornamento 2023-06-30
Data di Pubblicazione 2022-06-13
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Nicholas Hsiang
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/xianghongai/Chrome-Close-Multiple-Tabs
URL della Pagina della Politica sulla Privacy https://xinlu.ink/privacy
Lingue Supportate en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.1",
    "manifest_version": 3,
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "close-right-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+R"
            },
            "description": "__MSG_closeTabsToRight__"
        },
        "close-left-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "__MSG_closeTabsToLeft__"
        },
        "close-other-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "__MSG_closeOtherTabs__"
        }
    },
    "icons": {
        "16": "art16.png",
        "32": "art32.png",
        "48": "art48.png",
        "128": "art128.png"
    }
}