Duplicate Tab
Duplicate tab
Duplicate Tabとは何ですか?
Duplicate Tabはzertoshによって開発されたChromeの拡張機能で、その主な機能は「Duplicate tab」です。
拡張機能のスクリーンショット
Duplicate Tab拡張機能のCRXファイルをダウンロード
Duplicate Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome extension to duplicate the current tab.
## Usage
* Click the "Duplicate tab" icon from the Google Chrome toolbar.
* From "Window" -> "Extensions" -> "Keyboard shortcuts", set a shortcut for "Duplicate tab".
## Performance
Consumes minimal resources:
* Runs as an event page rather than a background page. So there is no persistent process running.
* Does not collect analytics. 拡張機能の基本情報
| 名前 | |
| ID | ljhkjdibhiomfkbpkbfcffpgbpkggnif |
| 公式URL | https://chromewebstore.google.com/detail/duplicate-tab/ljhkjdibhiomfkbpkbfcffpgbpkggnif |
| 説明 | Duplicate tab |
| ファイルサイズ | 39.38 KB |
| インストール数 | 6,269 |
| 現在のバージョン | 2.0.0 |
| 最終更新日 | 2024-02-04 |
| 公開日 | 2017-12-02 |
| 評価 | 3.75/5 合計 12 レビュー |
| 開発者 | zertosh |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/zertosh/duplicate-tab |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Duplicate Tab",
"version": "2.0.0",
"description": "Duplicate tab",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_icon": {
"32": "icon32.png"
},
"default_title": "Duplicate tab"
},
"background": {
"service_worker": "service-worker.js"
},
"commands": {
"duplicate-tab-keyboard-shortcut": {
"suggested_key": {
"default": "Ctrl+Shift+D",
"mac": "Command+Shift+D"
},
"description": "Duplicate tab"
},
"close-other-tabs-shortcut": {
"description": "Close Other Tabs",
"suggested_key": {
"default": "Alt+Shift+W"
}
}
},
"homepage_url": "https:\/\/github.com\/zertosh\/duplicate-tab",
"minimum_chrome_version": "120"
} | |