tabswitcher
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
Qu'est-ce que tabswitcher ?
tabswitcher est une extension Chrome développée par https://jhchabran.com, et sa fonction principale est "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension tabswitcher
Téléchargez les fichiers d'extension tabswitcher 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
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension settings. Suggestion: use alt-space.
Informations de Base sur l'Extension
Nom | |
ID | gkdkligmcadfbagoeggeohelmgalchcn |
URL Officiel | https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn |
Description | TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension… |
Taille du Fichier | 375 KB |
Nombre d'Installations | 22 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2015-09-29 |
Date de Publication | 2015-09-29 |
Évaluation | 4.50/5 Total 2 Évaluations |
Développeur | https://jhchabran.com |
Type de Paiement | free |
Site Web de l'Extension | http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/ |
URL de la Page d'Aide | https://github.com/jhchabran/tabswitcher |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "tabswitcher", "version": "1.0.2", "browser_action": { "default_title": "Show the popup", "default_popup": "popup.html", "default_icon": { "19": "icon19.png", "38": "icon38.png" } }, "permissions": [ "tabs" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "tabswitcher.js", "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "tabswitcher.js", "background.js" ], "persistent": false }, "manifest_version": 2 } |