Tabs
A simple, usable index of all your tabs.
Cos'è Tabs?
Tabs è un'estensione di Chrome sviluppata da kenmoore, e la sua funzione principale è "A simple, usable index of all your tabs.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tabs
Scarica i file di estensione Tabs 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
Don't let a ton of tabs slow you down. Press Alt+T to toggle a heads-up list of all your tabs.
Informazioni di Base sull'Estensione
Nome | |
ID | cdbepibloojgbmnofbejfgglmdlifadj |
URL Ufficiale | https://chrome.google.com/webstore/detail/tabs/cdbepibloojgbmnofbejfgglmdlifadj |
Descrizione | A simple, usable index of all your tabs. |
Dimensione del File | 127 KB |
Conteggio Installazioni | 1,000 |
Versione Corrente | 0.34 |
Ultimo Aggiornamento | 2019-05-14 |
Data di Pubblicazione | 2019-05-14 |
Valutazione | 4.67/5 Totale 30 Valutazioni |
Sviluppatore | kenmoore |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tabs", "description": "A simple, usable index of all your tabs.", "version": "0.34", "author": "Ken Moore", "browser_action": { "default_icon": { "19": "images\/browser-action-19.png", "38": "images\/browser-action-38.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "tabs", "activeTab", "sessions", "storage" ], "web_accessible_resources": [ "css\/styles.css", "css\/cleanslate.css", "fonts\/*.woff2", "images\/*.svg", "images\/*.png" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+T" } }, "list-tabs": { "suggested_key": { "default": "Shift+Alt+T" }, "description": "Show a list of all open tabs" } }, "background": { "scripts": [ "js\/eventPage.js" ], "persistent": false } } |