Tab Duplicator Shortcut
An extension to do some things with keyboard shortcuts
Tab Duplicator Shortcutとは何ですか?
Tab Duplicator ShortcutはTanner Trachtによって開発されたChromeの拡張機能で、その主な機能は「An extension to do some things with keyboard shortcuts」です。
拡張機能のスクリーンショット
Tab Duplicator Shortcut拡張機能のCRXファイルをダウンロード
Tab Duplicator Shortcut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This lightweight extension will add a keyboard shortcut for duplicating your current tab simply press CTRL+SHIFT+Y and the current tab will be instantly duplicated.
拡張機能の基本情報
名前 | Tab Duplicator Shortcut |
ID | dbpmgojhkioibaampnbpiiblpdjmkbjc |
公式URL | https://chromewebstore.google.com/detail/tab-duplicator-shortcut/dbpmgojhkioibaampnbpiiblpdjmkbjc |
説明 | An extension to do some things with keyboard shortcuts |
ファイルサイズ | 11.14 KB |
インストール数 | 324 |
現在のバージョン | 1.0.1 |
最終更新日 | 2018-11-12 |
公開日 | 2018-11-12 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Tanner Tracht |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Duplicator Shortcut", "description": "An extension to do some things with keyboard shortcuts", "version": "1.0.1", "browser_action": { "default_icon": "logo.png", "default_popup": "popup.html", "default_title": "Tab Duplicator" }, "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "commands": { "boom": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Toggle feature foo" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |