Tab Duplicator Shortcut

An extension to do some things with keyboard shortcuts

What is Tab Duplicator Shortcut?

Tab Duplicator Shortcut is a Chrome extension developed by Tanner Tracht, and its main feature is "An extension to do some things with keyboard shortcuts".

Extension Screenshots

screenshot

Download Tab Duplicator Shortcut Extension CRX File

Download Tab Duplicator Shortcut 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

                        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.                    

Extension Basic Information

Name Tab Duplicator Shortcut Tab Duplicator Shortcut
ID dbpmgojhkioibaampnbpiiblpdjmkbjc
Official URL https://chromewebstore.google.com/detail/tab-duplicator-shortcut/dbpmgojhkioibaampnbpiiblpdjmkbjc
Description An extension to do some things with keyboard shortcuts
File Size 11.14 KB
Installation Count 324
Current Version 1.0.1
Last Updated 2018-11-12
Publish Date 2018-11-12
Rating 5.00/5 Total 2 Ratings
Developer Tanner Tracht
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}