Chrommander - tab navigator

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

Chrommander - tab navigator là gì?

Chrommander - tab navigator là một tiện ích mở rộng Chrome được phát triển bởi Simon Soriano, và tính năng chính của nó là "Use Chrommander's search box to quickly jump to any opened tab or bookmark.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chrommander - tab navigator

Tải xuống các tệp mở rộng Chrommander - tab navigator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chrommander - tab navigator Chrommander - tab navigator
ID ebbmganccobhlpcbkmodhiclngkbkcci
URL Chính Thức https://chromewebstore.google.com/detail/chrommander-tab-navigator/ebbmganccobhlpcbkmodhiclngkbkcci
Mô tả Use Chrommander's search box to quickly jump to any opened tab or bookmark.
Kích Thước Tệp 490 KB
Số Lần Cài Đặt 130
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2018-08-19
Ngày Phát Hành 2018-08-19
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Simon Soriano
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/simon0191/chrommander
URL Trang Trợ Giúp https://github.com/simon0191/chrommander/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}