Moly Tab Menu
Switch tabs more efficiently.
Cos'è Moly Tab Menu?
Moly Tab Menu è un'estensione di Chrome sviluppata da slaypni, e la sua funzione principale è "Switch tabs more efficiently.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Moly Tab Menu
Scarica i file di estensione Moly Tab Menu 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
Moly Tab Menu enables you to look up opening tabs and jump into one of them effortlessly. You can navigate between tabs using keyboard shortcuts and/or mouse scroll. It is quick to jump into a recently opened tab because tabs are arranged in the activated order by default. Other sort orders are also available for better navigation according to use cases. You can also type some characters to filter tabs by its name. It not only offers the opening tabs view but also recently closed tabs view and page history view. These views enable you to find and open whatever tabs/pages efficiently. All keyboard shortcuts are customizable in the options page.
Informazioni di Base sull'Estensione
Nome | Moly Tab Menu |
ID | pniegmhajhkebcalmfalpjjhmgfipibc |
URL Ufficiale | https://chromewebstore.google.com/detail/moly-tab-menu/pniegmhajhkebcalmfalpjjhmgfipibc |
Descrizione | Switch tabs more efficiently. |
Dimensione del File | 69.26 KB |
Conteggio Installazioni | 334 |
Versione Corrente | 1.1.2 |
Ultimo Aggiornamento | 2020-10-27 |
Data di Pubblicazione | 2020-03-08 |
Valutazione | 2.69/5 Totale 16 Valutazioni |
Sviluppatore | slaypni |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/slaypni/moly-tabmenu2 |
URL della Pagina di Aiuto | https://twitter.com/slaypni |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Moly Tab Menu", "version": "1.1.2", "description": "Switch tabs more efficiently.", "icons": { "16": "icons\/16.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/content.js" ], "css": [ "styles\/content-light.css", "styles\/content-dark.css" ], "run_at": "document_start", "all_frames": false } ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": true }, "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "tabs", "storage", "sessions", "history", "chrome:\/\/favicon\/" ] } |