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 |
官方網址 | 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 |
電子郵箱 | [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" } } |