Duplicate Tab
Duplicate tab
What is Duplicate Tab?
Duplicate Tab is a Chrome extension developed by zertosh, and its main feature is "Duplicate tab".
Extension Screenshots
Download Duplicate Tab Extension CRX File
Download Duplicate Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Duplicate Tab |
ID | ljhkjdibhiomfkbpkbfcffpgbpkggnif |
Official URL | https://chromewebstore.google.com/detail/duplicate-tab/ljhkjdibhiomfkbpkbfcffpgbpkggnif |
Description | Duplicate tab |
File Size | 39.38 KB |
Installation Count | 6,269 |
Current Version | 2.0.0 |
Last Updated | 2024-02-04 |
Publish Date | 2017-12-02 |
Rating | 3.75/5 Total 12 Ratings |
Developer | zertosh |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/zertosh/duplicate-tab |
Supported Languages | 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" } |