Keyboard Shortcuts to Close Other/Right Tabs
Chrome extension adding shortcuts for closing and pinning tabs.
Keyboard Shortcuts to Close Other/Right Tabsとは何ですか?
Keyboard Shortcuts to Close Other/Right TabsはMichael Festerによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension adding shortcuts for closing and pinning tabs.」です。
拡張機能のスクリーンショット
Keyboard Shortcuts to Close Other/Right Tabs拡張機能のCRXファイルをダウンロード
Keyboard Shortcuts to Close Other/Right Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The extension consists of three keyboard shortcuts: * Alt-Shift-O: Close Other Tabs * Alt-Shift-R: Close Tabs to the Right * Alt-Shift-P: Pin Tab Note: A separate extension, tabloid, adds the following shortcuts to Chrome * Move Tab Right * Move Tab Left * Move Tab to First Position * Move Tab to Last Position Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabasco. You can fetch tabloid here: https://chrome.google.com/webstore/detail/femidpfpildjfepkcaodpalpakgadjih
拡張機能の基本情報
名前 | Keyboard Shortcuts to Close Other/Right Tabs |
ID | dkoadhojigekhckndaehenfbhcgfeepl |
公式URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl |
説明 | Chrome extension adding shortcuts for closing and pinning tabs. |
ファイルサイズ | 4.03 KB |
インストール数 | 20,000 |
現在のバージョン | 1.0.1 |
最終更新日 | 2023-10-28 |
公開日 | 2013-01-23 |
評価 | 4.33/5 合計 72 レビュー |
開発者 | Michael Fester |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://michaelfester.com |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Keyboard Shortcuts to Close Other\/Right Tabs", "version": "1.0.1", "manifest_version": 3, "description": "Chrome extension adding shortcuts for closing and pinning tabs.", "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "activeTab", "tabGroups" ], "commands": { "close-other-tabs": { "suggested_key": { "default": "Alt+Shift+O" }, "description": "Close other Tabs" }, "close-right-tabs": { "suggested_key": { "default": "Alt+Shift+R" }, "description": "Close Tabs to the right" }, "toggle-pin": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "Pin\/unpin Tab" } } } |