Tab Number
Number tabs when the ctrl/alt/cmd button is held.
¿Qué es Tab Number?
Tab Number es una extensión de Chrome desarrollada por stugrammer, y su función principal es "Number tabs when the ctrl/alt/cmd button is held.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Tab Number
Descarga archivos de extensión Tab Number en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Tab Number |
ID | fijaenjgknobfdombbdchngpamggajpm |
URL Oficial | https://chromewebstore.google.com/detail/tab-number/fijaenjgknobfdombbdchngpamggajpm |
Descripción | Number tabs when the ctrl/alt/cmd button is held. |
Tamaño del Archivo | 27.02 KB |
Cantidad de Instalaciones | 1,847 |
Versión Actual | 0.2.0.1 |
Última Actualización | 2013-12-03 |
Fecha de Publicación | 2013-12-03 |
Calificación | 3.36/5 Total de 55 Calificaciones |
Desarrollador | stugrammer |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |