Duplicate Tab

Duplicate tab

Wat is Duplicate Tab?

Duplicate Tab is een Chrome-extensie ontwikkeld door zertosh, en de belangrijkste functie is "Duplicate tab".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Duplicate Tab

Download Duplicate Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Duplicate Tab Duplicate Tab
ID ljhkjdibhiomfkbpkbfcffpgbpkggnif
Officiële URL https://chromewebstore.google.com/detail/duplicate-tab/ljhkjdibhiomfkbpkbfcffpgbpkggnif
Beschrijving Duplicate tab
Bestandsgrootte 39.38 KB
Aantal Installaties 6,269
Huidige Versie 2.0.0
Laatst Bijgewerkt 2024-02-04
Publicatiedatum 2017-12-02
Beoordeling 3.75/5 Totaal 12 Beoordelingen
Ontwikkelaar zertosh
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/zertosh/duplicate-tab
Ondersteunde Talen 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"
}