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文件

下载Chrommander - tab navigator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}