Close Tab Shortcut
Customize chrome shortcut to close current tab
Close Tab Shortcutとは何ですか?
Close Tab ShortcutはStanley Guevaraによって開発されたChromeの拡張機能で、その主な機能は「Customize chrome shortcut to close current tab」です。
Close Tab Shortcut拡張機能のCRXファイルをダウンロード
Close Tab Shortcut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simple extension for closing active tab. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
拡張機能の基本情報
名前 | ![]() |
ID | oohndijkoieelbpmfehjecdihiiaecgb |
公式URL | https://chrome.google.com/webstore/detail/oohndijkoieelbpmfehjecdihiiaecgb |
説明 | Customize chrome shortcut to close current tab |
ファイルサイズ | 3.21 KB |
インストール数 | 11 |
現在のバージョン | 1.0 |
最終更新日 | 2016-10-16 |
公開日 | 2016-10-16 |
開発者 | Stanley Guevara |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/stanleyguevara/chrome-close-tab-shortcut |
ヘルプページのURL | https://github.com/stanleyguevara/chrome-close-tab-shortcut |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Close Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to close current tab", "commands": { "close-tab": { "suggested_key": { "default": "Alt+X", "mac": "Ctrl+X" }, "description": "Close current tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |