Moly Tab Menu
Switch tabs more efficiently.
Moly Tab Menuとは何ですか?
Moly Tab Menuはslaypniによって開発されたChromeの拡張機能で、その主な機能は「Switch tabs more efficiently.」です。
拡張機能のスクリーンショット
Moly Tab Menu拡張機能のCRXファイルをダウンロード
Moly Tab Menu拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Moly Tab Menu |
ID | pniegmhajhkebcalmfalpjjhmgfipibc |
公式URL | https://chromewebstore.google.com/detail/moly-tab-menu/pniegmhajhkebcalmfalpjjhmgfipibc |
説明 | Switch tabs more efficiently. |
ファイルサイズ | 69.26 KB |
インストール数 | 334 |
現在のバージョン | 1.1.2 |
最終更新日 | 2020-10-27 |
公開日 | 2020-03-08 |
評価 | 2.69/5 合計 16 レビュー |
開発者 | slaypni |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/slaypni/moly-tabmenu2 |
ヘルプページのURL | https://twitter.com/slaypni |
対応言語 | 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\/" ] } |