Tab CtrlP

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

O que é Tab CtrlP?

Tab CtrlP é uma extensão do Chrome desenvolvida por xk.dev, e sua principal característica é "Quick searching for browser tabs, just like what the vim ctrlp plugin does for files. 标签快速模糊搜索,同时支持英文/拼音.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Tab CtrlP

Baixe arquivos de extensão Tab CtrlP no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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,下拉至页面底部,点击右下角"键盘快捷键”连接,自定义插件启动快捷键。

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

Informações Básicas da Extensão

Nome Tab CtrlP Tab CtrlP
ID pebcgobhffpbcdobjepnhhhkmeokhojl
URL Oficial https://chrome.google.com/webstore/detail/tab-ctrlp/pebcgobhffpbcdobjepnhhhkmeokhojl
Descrição Quick searching for browser tabs, just like what the vim ctrlp plugin does for files. 标签快速模糊搜索,同时支持英文/拼音.
Tamanho do Arquivo 761 KB
Contagem de Instalações 51
Versão Atual 1.2.0
Última Atualização 2018-03-18
Data de Publicação 2018-03-18
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor xk.dev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    }
}