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
公式URL 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
Eメール [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"
        }
    }
}