Tab CtrlP

Quick searching for browser tabs, just like what the vim ctrlp plugin does for files. 标签快速模糊搜索,同时支持英文/拼音.

¿Qué es Tab CtrlP?

Tab CtrlP es una extensión de Chrome desarrollada por xk.dev, y su función principal es "Quick searching for browser tabs, just like what the vim ctrlp plugin does for files. 标签快速模糊搜索,同时支持英文/拼音.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Tab CtrlP

Descarga archivos de extensión Tab CtrlP en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Having tons of tabs open in the window? This plugin comes to save! Fast tab switching tools inspired by the famous vim plugin (http://www.bestofvim.com/plugin/ctrl-p/).Support fuzzy search for both English and Chinese pinyin (the pronunciation system for Chinese). 

★ Basic Usage:   
    ➤ For Mac users: press Ctrl+P to launch. Type to match the tab name. Use arrow key to select. Press Enter jumping to that tab. 
    ➤ For Windows users: press Alt+P shortcut to launch the plugin.   

★ Extra features: 
    ➤ Press Alt-6 (Ctrl-6 for Mac users) to switch between current and last viewed tab. 
    ➤ Press Alt-O (Ctrl-O for Mac users) jump back to previous visited tabs (and Alt/Ctrl-I to jump forward).

★ Note: if the shortcut not working, probably it's in conflict with existing system/browser keybindings. In such case, open chrome://extensions in a browser window, scroll all the way down, click the "Keyboard Shortcuts" to customize the shortcut. 

模拟vim文件搜索插件Ctrlp功能,支持浏览器标签模糊搜索,同时支持英文+拼音, 拼音部分支持3500个常用汉字,支持多音字匹配。

★ 基本用法:
    ➤ Windows用户:Alt+P打开插件。Mac用户:Ctrl+P打开插件。输入英文字符,自动匹配英文字母和中文拼音。方向键选择多个匹配结果。敲击回车键跳至所选标签页面。

★ 额外功能:
    ➤ Ctrl-6 在当前和上一个浏览器标签之间来回切换。
    ➤ Ctrl-O访问之前浏览过的标签页,Ctrl-I 返回之后浏览过的标签。

★ 注意:某些特定情况下,插件快捷键与其他浏览器快捷键设置冲突,快捷键可能无效,此时在浏览器窗口中打开 chrome://extensions,下拉至页面底部,点击右下角"键盘快捷键”连接,自定义插件启动快捷键。

★ 已知问题:受字库大小限制,个别常用汉字无法进行拼音转换。                    

Información Básica de la Extensión

Nombre Tab CtrlP Tab CtrlP
ID pebcgobhffpbcdobjepnhhhkmeokhojl
URL Oficial https://chrome.google.com/webstore/detail/tab-ctrlp/pebcgobhffpbcdobjepnhhhkmeokhojl
Descripción Quick searching for browser tabs, just like what the vim ctrlp plugin does for files. 标签快速模糊搜索,同时支持英文/拼音.
Tamaño del Archivo 761 KB
Cantidad de Instalaciones 51
Versión Actual 1.2.0
Última Actualización 2018-03-18
Fecha de Publicación 2018-03-18
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador xk.dev
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab CtrlP",
    "description": "Quick searching for browser tabs, just like what the vim ctrlp plugin does for files. \u6807\u7b7e\u5feb\u901f\u6a21\u7cca\u641c\u7d22\uff0c\u540c\u65f6\u652f\u6301\u82f1\u6587\/\u62fc\u97f3.",
    "version": "1.2.0",
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": ".\/img\/icon128.png",
        "default_popup": ".\/html\/popup.html"
    },
    "icons": {
        "16": ".\/img\/icon16.png",
        "48": ".\/img\/icon48.png",
        "128": ".\/img\/icon128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+P",
                "windows": "Alt+P",
                "mac": "MacCtrl+P"
            }
        },
        "toggle-last-viewed-tab": {
            "suggested_key": {
                "default": "Alt+6",
                "windows": "Alt+6",
                "mac": "MacCtrl+6"
            },
            "description": "Toggle between this tab and last viewed tab, like Ctrl-^ in vim"
        },
        "goto-last-viewed-tab": {
            "suggested_key": {
                "default": "Alt+O",
                "windows": "Alt+O",
                "mac": "MacCtrl+O"
            },
            "description": "Go to previous viewed tab, (kind-of) like Ctrl-O in vim"
        },
        "goto-next-viewed-tab": {
            "suggested_key": {
                "default": "Alt+I",
                "windows": "Alt+I",
                "mac": "MacCtrl+I"
            },
            "description": "Go to next viewed tab, (kind-of) like Ctrl-I in vim"
        }
    }
}