Fast Tab Switcher
Easily find and close tabs!
Fast Tab Switcher란 무엇입니까?
Fast Tab Switcher은(는) https://ronsatech.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily find and close tabs!"입니다.
확장 프로그램 스크린샷
Fast Tab Switcher 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Many of us tend to open so many Chrome Tab then get lost somewhere when we want to get back to previously opened tab. We created this Extension out of genuine concern from many user and web developers. Now you simply press Alt+T (Cmd+E on Mac) to launch Tab Switcher and quickly search for desired tab and press Enter. You can also use Up/Down arrow keys to navigate through tabs. If there is a clash on keyboard shortcut then you can assign any key of your interest by navigating to chrome://extensions/shortcuts This is initial version, we have long list of improvements planned for this extension. If you any suggestion or idea to make it more useful for you then please leave a Support Message or write us Email at [email protected]
확장 프로그램 기본 정보
이름 | Fast Tab Switcher |
ID | idkpmchlhfanmhckfmfpkjnnpifolcpk |
공식 URL | https://chromewebstore.google.com/detail/fast-tab-switcher/idkpmchlhfanmhckfmfpkjnnpifolcpk |
설명 | Easily find and close tabs! |
파일 크기 | 17.06 KB |
설치 횟수 | 40 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2020-01-07 |
출시 날짜 | 2020-01-07 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://ronsatech.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fast Tab Switcher", "version": "0.0.1", "description": "Easily find and close tabs!", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "activeTab", "declarativeContent" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/tab_search_16.png", "32": "images\/tab_search_32.png", "48": "images\/tab_search_48.png", "128": "images\/tab_search_128.png" } }, "commands": { "_execute_page_action": { "suggested_key": { "default": "Alt+T", "mac": "Command+E" } } }, "icons": { "16": "images\/tab_search_16.png", "32": "images\/tab_search_32.png", "48": "images\/tab_search_48.png", "128": "images\/tab_search_128.png" } } |