Close Multiple Tabs
Close Tabs to Right/Left/Other With a Shortcut Key
Close Multiple Tabsとは何ですか?
Close Multiple TabsはNicholas Hsiangによって開発されたChromeの拡張機能で、その主な機能は「Close Tabs to Right/Left/Other With a Shortcut Key」です。
拡張機能のスクリーンショット
Close Multiple Tabs拡張機能のCRXファイルをダウンロード
Close Multiple Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        # 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 用,爽得不要不要的。                     拡張機能の基本情報
| 名前 |   |  
| ID | acpnjejgmplmdjiogpejdonndpleeank | 
| 公式URL | https://chromewebstore.google.com/detail/close-multiple-tabs/acpnjejgmplmdjiogpejdonndpleeank | 
| 説明 | Close Tabs to Right/Left/Other With a Shortcut Key | 
| ファイルサイズ | 9.99 KB | 
| インストール数 | 64 | 
| 現在のバージョン | 1.1 | 
| 最終更新日 | 2023-06-30 | 
| 公開日 | 2022-06-13 | 
| 評価 | 5.00/5 合計 1 レビュー | 
| 開発者 | Nicholas Hsiang | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 拡張機能のウェブサイト | https://github.com/xianghongai/Chrome-Close-Multiple-Tabs | 
| プライバシーポリシーページのURL | https://xinlu.ink/privacy | 
| 対応言語 | 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"
    }
}  |  |