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. 标签快速模糊搜索,同时支持英文/拼音."입니다.
확장 프로그램 스크린샷
Tab CtrlP 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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,下拉至页面底部,点击右下角"键盘快捷键”连接,自定义插件启动快捷键。 ★ 已知问题:受字库大小限制,个别常用汉字无法进行拼音转换。
확장 프로그램 기본 정보
이름 | |
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 |
이메일 | [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" } } } |