Tab Number
Number tabs when the ctrl/alt/cmd button is held.
Cos'è Tab Number?
Tab Number è un'estensione di Chrome sviluppata da stugrammer, e la sua funzione principale è "Number tabs when the ctrl/alt/cmd button is held.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tab Number
Scarica i file di estensione Tab Number in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | fijaenjgknobfdombbdchngpamggajpm |
| URL Ufficiale | https://chromewebstore.google.com/detail/tab-number/fijaenjgknobfdombbdchngpamggajpm |
| Descrizione | Number tabs when the ctrl/alt/cmd button is held. |
| Dimensione del File | 27.02 KB |
| Conteggio Installazioni | 1,847 |
| Versione Corrente | 0.2.0.1 |
| Ultimo Aggiornamento | 2013-12-03 |
| Data di Pubblicazione | 2013-12-03 |
| Valutazione | 3.36/5 Totale 55 Valutazioni |
| Sviluppatore | stugrammer |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |