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 |
官方網址 | 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 |
電子郵箱 | [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\/" ] } |