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.
扩展基本信息
名称 | Duplicate Tab |
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 |
电子邮箱 | [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" } |