Tab CtrlP

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

什麼是Tab CtrlP?

Tab CtrlP是由xk.dev開發的Chrome擴展程式,該擴展的主要功能是“Quick searching for browser tabs, just like what the vim ctrlp plugin does for files. 标签快速模糊搜索,同时支持英文/拼音.”。

擴展截圖

screenshot
screenshot

下載Tab CtrlP擴展crx文件

下載Tab CtrlP擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

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

擴展基本資訊

名稱 Tab CtrlP Tab CtrlP
ID pebcgobhffpbcdobjepnhhhkmeokhojl
官方網址 https://chrome.google.com/webstore/detail/tab-ctrlp/pebcgobhffpbcdobjepnhhhkmeokhojl
簡介 Quick searching for browser tabs, just like what the vim ctrlp plugin does for files. 标签快速模糊搜索,同时支持英文/拼音.
檔案大小 761 KB
安裝次數 51
目前版本 1.2.0
更新時間 2018-03-18
上架時間 2018-03-18
評分 5.00/5 共 4 次評分
開發者 xk.dev
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        }
    }
}