Duplicate Tab Hotkey
Adds a hotkey for duplicating the current tab.
Qu'est-ce que Duplicate Tab Hotkey ?
Duplicate Tab Hotkey est une extension Chrome développée par Elijah Verdoorn, et sa fonction principale est "Adds a hotkey for duplicating the current tab.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Duplicate Tab Hotkey
Téléchargez les fichiers d'extension Duplicate Tab Hotkey au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
A simple, free, libre, open-source extension requiring no permissions that adds a hotkey to Chrome for duplicating the current tab. No tracking is used in this extension, which also requires no special permissions. Users are welcome to view the complete source code (https://github.com/elijahverdoorn/duplicate-tab-extension) in order to ensure confidence that their browsing remains private. Right now, the hotkey is configured to be Ctrl+Shift+E on Windows and Command+Shift+E on Mac. In future versions the hotkey may become configurable.
Informations de Base sur l'Extension
Nom | |
ID | adgkgjklgiilebgjckenkknhbenpiinc |
URL Officiel | https://chromewebstore.google.com/detail/duplicate-tab-hotkey/adgkgjklgiilebgjckenkknhbenpiinc |
Description | Adds a hotkey for duplicating the current tab. |
Taille du Fichier | 58.09 KB |
Nombre d'Installations | 91 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2020-01-24 |
Date de Publication | 2020-01-24 |
Développeur | Elijah Verdoorn |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://elijahverdoorn.com |
URL de la Page d'Aide | https://elijahverdoorn.com/contact |
URL de la Page de Politique de Confidentialité | https://elijahverdoorn.com/chrome-tab-duplicator-privacy |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Duplicate Tab Hotkey", "version": "1.1.0", "description": "Adds a hotkey for duplicating the current tab.", "browser_action": { "default_popup": "about.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "duplicate-tab": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" }, "description": "Duplicate the current tab." } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "options_ui": { "page": "about.html", "open_in_tab": false }, "manifest_version": 2 } |