Tab Duplicator Shortcut
An extension to do some things with keyboard shortcuts
Wat is Tab Duplicator Shortcut?
Tab Duplicator Shortcut is een Chrome-extensie ontwikkeld door Tanner Tracht, en de belangrijkste functie is "An extension to do some things with keyboard shortcuts".
Extensie Screenshots
Download het CRX-bestand van de extensie Tab Duplicator Shortcut
Download Tab Duplicator Shortcut-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
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.
Basisinformatie over de Extensie
Naam | Tab Duplicator Shortcut |
ID | dbpmgojhkioibaampnbpiiblpdjmkbjc |
Officiële URL | https://chromewebstore.google.com/detail/tab-duplicator-shortcut/dbpmgojhkioibaampnbpiiblpdjmkbjc |
Beschrijving | An extension to do some things with keyboard shortcuts |
Bestandsgrootte | 11.14 KB |
Aantal Installaties | 324 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2018-11-12 |
Publicatiedatum | 2018-11-12 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Tanner Tracht |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |