Moly Tab Menu

Switch tabs more efficiently.

Moly Tab Menu란 무엇입니까?

Moly Tab Menu은(는) slaypni에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Switch tabs more efficiently."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Moly Tab Menu 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/"
    ]
}