Keyboard shortcuts to close Chrome tabs
Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
Keyboard shortcuts to close Chrome tabsとは何ですか?
Keyboard shortcuts to close Chrome tabsはhttps://diophung.comによって開発されたChromeの拡張機能で、その主な機能は「Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones」です。
拡張機能のスクリーンショット
Keyboard shortcuts to close Chrome tabs拡張機能のCRXファイルをダウンロード
Keyboard shortcuts to close Chrome tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? This extension will let you do it, and there are more. You can configure the hotkeys to: - Close tabs to the left. - Close tabs to the right. - Close other tabs. - Pin/unpin a tab. Source code available at : https://github.com/diophung/close-chrome-tabs Please provide your feedback to Twitter: @diophung or email : [email protected].
拡張機能の基本情報
名前 | Keyboard shortcuts to close Chrome tabs |
ID | fipfgiejfpcdacpjepkohdlnjonchnal |
公式URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal |
説明 | Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones |
ファイルサイズ | 293 KB |
インストール数 | 4,928 |
現在のバージョン | 0.3.0 |
最終更新日 | 2022-02-07 |
公開日 | 2018-06-24 |
評価 | 4.64/5 合計 25 レビュー |
開発者 | https://diophung.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/diophung/close-chrome-tabs |
ヘルプページのURL | https://diophung.com/chrome-tab-shortcut-privacy-policy/ |
プライバシーポリシーページのURL | https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "close-other-tabs-dp": { "description": "Close other tabs", "suggested_key": { "default": "Alt+Shift+W" } }, "close-left-tabs-dp": { "description": "Close tabs to the left", "suggested_key": { "default": "Alt+Shift+L" } }, "close-right-tabs-dp": { "description": "Close tabs to the right", "suggested_key": { "default": "Alt+Shift+R" } }, "toggle-pin-dp": { "description": "Pin\/unpin Tab", "suggested_key": { "default": "Alt+Shift+P" } } }, "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones", "icons": { "128": "images\/tabs_128.png", "48": "images\/tabs_48.png" }, "manifest_version": 2, "name": "Keyboard shortcuts to close Chrome tabs", "short_name": "Shortcuts to close tabs", "options_page": "options.html", "permissions": [], "version": "0.3.0" } |