Chrommander - tab navigator

Use Chrommander's search box to quickly jump to any opened tab or bookmark.

Chrommander - tab navigator란 무엇입니까?

Chrommander - tab navigator은(는) Simon Soriano에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use Chrommander's search box to quickly jump to any opened tab or bookmark."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Chrommander - tab navigator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Use Chrommander's search box to quickly jump to any opened tab or bookmark.

Features:
- Press `Ctrl+P` in MacOS or `Ctrl+Shift+P` in the rest of operating systems, and you'll see a list with all the currently opened tabs.
- Move within the list of results using the up and down arrow keys or the mouse
- Type in the search box to filter the results
- Search for bookmarks by typing "b" at the beginning and then the name of the bookmark that you want to open
- Select the tab or bookmark that you want to open and press enter or click on it

https://github.com/simon0191/chrommander                    

확장 프로그램 기본 정보

이름 Chrommander - tab navigator Chrommander - tab navigator
ID ebbmganccobhlpcbkmodhiclngkbkcci
공식 URL https://chromewebstore.google.com/detail/chrommander-tab-navigator/ebbmganccobhlpcbkmodhiclngkbkcci
설명 Use Chrommander's search box to quickly jump to any opened tab or bookmark.
파일 크기 490 KB
설치 횟수 130
현재 버전 0.0.2
최근 업데이트 2018-08-19
출시 날짜 2018-08-19
평점 5.00/5 총 4 개의 평점
개발자 Simon Soriano
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/simon0191/chrommander
도움말 페이지 URL https://github.com/simon0191/chrommander/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrommander - tab navigator",
    "short_name": "Chrommander",
    "version": "0.0.2",
    "description": "Use Chrommander's search box to quickly jump to any opened tab or bookmark.",
    "author": "@simon0191",
    "browser_action": {
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "background\/bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "foreground\/bundle.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "bookmarks",
        "chrome:\/\/favicon\/"
    ],
    "commands": {
        "_execute_browser_action": {
            "description": "Open Chrommander",
            "suggested_key": {
                "windows": "Ctrl+Shift+P",
                "mac": "MacCtrl+P",
                "chromeos": "Ctrl+Shift+P",
                "linux": "Ctrl+Shift+P"
            }
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}