Tab Shortcut Tools
Duplicate Tab, Pop out Tab, and New Tab to the Right - Configurable Shortcuts
Tab Shortcut Toolsとは何ですか?
Tab Shortcut Toolsはhttps://thorium.rocksによって開発されたChromeの拡張機能で、その主な機能は「Duplicate Tab, Pop out Tab, and New Tab to the Right - Configurable Shortcuts」です。
拡張機能のスクリーンショット
Tab Shortcut Tools拡張機能のCRXファイルをダウンロード
Tab Shortcut Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chromium Extension to Duplicate Tab, Pop out current Tab, and add New Tab to the Right. You can configure the shortcuts at chrome://extensions/shortcuts
- Alex313031
Source: https://github.com/Alex313031/Tab-Shortcut-Tools 拡張機能の基本情報
| 名前 | |
| ID | ecfmgmpggijgmnjolmaegkhkcdkbookp |
| 公式URL | https://chromewebstore.google.com/detail/tab-shortcut-tools/ecfmgmpggijgmnjolmaegkhkcdkbookp |
| 説明 | Duplicate Tab, Pop out Tab, and New Tab to the Right - Configurable Shortcuts |
| ファイルサイズ | 98.13 KB |
| インストール数 | 478 |
| 現在のバージョン | 1.6.4 |
| 最終更新日 | 2023-04-17 |
| 公開日 | 2022-07-05 |
| 評価 | 4.50/5 合計 2 レビュー |
| 開発者 | https://thorium.rocks |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/Alex313031/Tab-Shortcut-Tools |
| ヘルプページのURL | https://github.com/Alex313031/Tab-Shortcut-Tools/issues |
| プライバシーポリシーページのURL | https://thorium.rocks/COC.html |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Tab Shortcut Tools",
"short_name": "Tab Shortcut Tools",
"version": "1.6.4",
"version_name": "1.6.4",
"description": "Duplicate Tab, Pop out Tab, and New Tab to the Right - Configurable Shortcuts",
"homepage_url": "https:\/\/github.com\/Alex313031\/Tab-Shortcut-Tools",
"author": "Alex313031",
"icons": {
"16": "icons\/icon_16.png",
"24": "icons\/icon_24.png",
"32": "icons\/icon_32.png",
"48": "icons\/icon_48.png",
"64": "icons\/icon_64.png",
"128": "icons\/icon_128.png",
"256": "icons\/icon_256.png"
},
"background": {
"service_worker": "js\/service_worker.js"
},
"options_ui": {
"page": "popup.html"
},
"action": {
"default_icon": {
"16": "icons\/icon_16.png",
"19": "icons\/icon_19.png",
"24": "icons\/icon_24.png",
"32": "icons\/icon_32.png",
"38": "icons\/icon_38.png",
"48": "icons\/icon_48.png"
},
"default_title": "Configure Tab Shortcut Tools",
"default_popup": "popup.html"
},
"commands": {
"duplicate-tab": {
"suggested_key": {
"default": "Ctrl+Shift+D"
},
"description": "Duplicate the current tab"
},
"duplicate-to-new-window": {
"description": "Duplicate to a new window"
},
"pop-out-to-new-window": {
"suggested_key": {
"default": "Ctrl+Shift+P"
},
"description": "Pop tab out to a new window"
},
"new-tab-to-the-right": {
"suggested_key": {
"default": "Ctrl+Shift+K"
},
"description": "New tab to the right"
}
},
"permissions": [
"storage"
],
"minimum_chrome_version": "88",
"offline_enabled": true
} | |