Close Multiple Tabs
Close Tabs to Right/Left/Other With a Shortcut Key
Wat is Close Multiple Tabs?
Close Multiple Tabs is een Chrome-extensie ontwikkeld door Nicholas Hsiang, en de belangrijkste functie is "Close Tabs to Right/Left/Other With a Shortcut Key".
Extensie Screenshots
Download het CRX-bestand van de extensie Close Multiple Tabs
Download Close Multiple Tabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        # 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 用,爽得不要不要的。                     Basisinformatie over de Extensie
| Naam |   |  
| ID | acpnjejgmplmdjiogpejdonndpleeank | 
| Officiële URL | https://chromewebstore.google.com/detail/close-multiple-tabs/acpnjejgmplmdjiogpejdonndpleeank | 
| Beschrijving | Close Tabs to Right/Left/Other With a Shortcut Key | 
| Bestandsgrootte | 9.99 KB | 
| Aantal Installaties | 64 | 
| Huidige Versie | 1.1 | 
| Laatst Bijgewerkt | 2023-06-30 | 
| Publicatiedatum | 2022-06-13 | 
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen | 
| Ontwikkelaar | Nicholas Hsiang | 
| [email protected] | |
| Betalingswijze | free | 
| Extensiewebsite | https://github.com/xianghongai/Chrome-Close-Multiple-Tabs | 
| URL van de Privacybeleid Pagina | https://xinlu.ink/privacy | 
| Ondersteunde Talen | 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"
    }
}  |  |