Global New Tab Shortcut
This allows you to open a new tab from within any application with a keyboard shortcut. This means that as soon as you think of a…
Qu'est-ce que Global New Tab Shortcut ?
Global New Tab Shortcut est une extension Chrome développée par Wout Mertens, et sa fonction principale est "This allows you to open a new tab from within any application with a keyboard shortcut. This means that as soon as you think of a…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Global New Tab Shortcut
Téléchargez les fichiers d'extension Global New Tab Shortcut 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
This allows you to open a new tab from within any application with a keyboard shortcut. This means that as soon as you think of a search to do or web page to open, you are just one keypress away from doing it. !!! You MUST select a keyboard shortcut after installing !!! To use, install the extension and then click on "Keyboard Shortcuts" at the bottom of the extensions page. There, select a shortcut key for "Global New Tab Shortcut" and be sure to change the dropdown to "Global" afterwards. This extension doesn't add handlers to pages or anything fishy. It uses the built-in Chrome keyboard shortcut handling to create a new tab with the built-in Chrome APIs. Source is at https://github.com/wmertens/global-chrome-tab
Informations de Base sur l'Extension
Nom | Global New Tab Shortcut |
ID | dcngopenklmnfdlfocljeaokkhcplong |
URL Officiel | https://chromewebstore.google.com/detail/global-new-tab-shortcut/dcngopenklmnfdlfocljeaokkhcplong |
Description | This allows you to open a new tab from within any application with a keyboard shortcut. This means that as soon as you think of a… |
Taille du Fichier | 22.54 KB |
Nombre d'Installations | 178 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2022-11-02 |
Date de Publication | 2016-06-18 |
Évaluation | 4.13/5 Total 8 Évaluations |
Développeur | Wout Mertens |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/wmertens/global-chrome-tab |
URL de la Page d'Aide | https://github.com/wmertens/global-chrome-tab/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Global New Tab Shortcut", "version": "1.2.1", "manifest_version": 3, "icons": { "128": "new-tab.png" }, "background": { "service_worker": "background.js" }, "commands": { "new-tab": { "suggested_key": { "default": "Alt+G", "mac": "Command+Shift+S", "linux": "Alt+G" }, "description": "Switch to a new tab from any application, ready for searching!" }, "new-window": { "description": "Switch to a new window from any application, ready for searching!" }, "new-incognito-window": { "description": "Switch to a new *incognito* window from any application, ready for searching! To use this, you need to check the \"Allow in incognito\" checkbox of the extension." } } } |