Moly Tab Menu

Switch tabs more efficiently.

Moly Tab Menuคืออะไร?

Moly Tab Menu เป็นส่วนขยายของ Chrome ที่พัฒนาโดย slaypni และคุณลักษณะหลักของมันคือ "Switch tabs more efficiently."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Moly Tab Menu

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
อีเมล [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\/"
    ]
}