Moly Tab Menu
Switch tabs more efficiently.
Qu'est-ce que Moly Tab Menu ?
Moly Tab Menu est une extension Chrome développée par slaypni, et sa fonction principale est "Switch tabs more efficiently.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Moly Tab Menu
Téléchargez les fichiers d'extension Moly Tab Menu 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
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.
Informations de Base sur l'Extension
Nom | Moly Tab Menu |
ID | pniegmhajhkebcalmfalpjjhmgfipibc |
URL Officiel | https://chromewebstore.google.com/detail/moly-tab-menu/pniegmhajhkebcalmfalpjjhmgfipibc |
Description | Switch tabs more efficiently. |
Taille du Fichier | 69.26 KB |
Nombre d'Installations | 334 |
Version Actuelle | 1.1.2 |
Dernière Mise à Jour | 2020-10-27 |
Date de Publication | 2020-03-08 |
Évaluation | 2.69/5 Total 16 Évaluations |
Développeur | slaypni |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/slaypni/moly-tabmenu2 |
URL de la Page d'Aide | https://twitter.com/slaypni |
Langues Prises en Charge | 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\/" ] } |