Tab Number
Number tabs when the ctrl/alt/cmd button is held.
Qu'est-ce que Tab Number ?
Tab Number est une extension Chrome développée par stugrammer, et sa fonction principale est "Number tabs when the ctrl/alt/cmd button is held.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Number
Téléchargez les fichiers d'extension Tab Number 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 tool for those who uses ctrl/alt/cmd+number to jump between tabs. Display page number when you hold ctrl/alt/cmd key. Version 0.2.0.1: * Now the extension also works with pages having no favicon. * Fixed a bug that the number is not shown on some pages, such as google group. Version 0.1.0.2: * Show tab numbers when alt is held in non-Mac system. * Fixed a bug that tab numbers stay if page is closed with ctrl/cmd+w. * Fixed a bug that tab numbers stay if control is switched to another window when ctrl/alt/cmd is held.
Informations de Base sur l'Extension
Nom | Tab Number |
ID | fijaenjgknobfdombbdchngpamggajpm |
URL Officiel | https://chromewebstore.google.com/detail/tab-number/fijaenjgknobfdombbdchngpamggajpm |
Description | Number tabs when the ctrl/alt/cmd button is held. |
Taille du Fichier | 27.02 KB |
Nombre d'Installations | 1,847 |
Version Actuelle | 0.2.0.1 |
Dernière Mise à Jour | 2013-12-03 |
Date de Publication | 2013-12-03 |
Évaluation | 3.36/5 Total 55 Évaluations |
Développeur | stugrammer |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Number", "description": "Number tabs when the ctrl\/alt\/cmd button is held.", "version": "0.2.0.1", "icons": { "48": "icon-48.gif", "128": "icon-128.gif" }, "permissions": [ "tabs", "*:\/\/*\/*", "chrome:\/\/favicon\/" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "num_tab.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "favicon\/favicon-1.gif", "favicon\/favicon-2.gif", "favicon\/favicon-3.gif", "favicon\/favicon-4.gif", "favicon\/favicon-5.gif", "favicon\/favicon-6.gif", "favicon\/favicon-7.gif", "favicon\/favicon-8.gif", "favicon\/favicon-9.gif" ] } |