4 Smart Shortcuts
Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.
4 Smart Shortcuts란 무엇입니까?
4 Smart Shortcuts은(는) rawbytz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist."입니다.
확장 프로그램 스크린샷
4 Smart Shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
• 'Smart' keyboard shortcuts won't duplicate existing tabs. • Great for fullscreen. • Support for "chrome://" system shortcuts like, chrome://extensions & chrome://apps • Goes to existing tabs based on a "starts with" matching pattern. EXAMPLES: • Shortcut: https://www.google.com goes to the existing tab https://www.google.com/contacts • Shortcut: https://www.google.com/contacts does NOT go to the existing tab https://www.google.com
확장 프로그램 기본 정보
이름 | 4 Smart Shortcuts |
ID | fmmofgdcmllajpdnnpllmlffogijffan |
공식 URL | https://chromewebstore.google.com/detail/4-smart-shortcuts/fmmofgdcmllajpdnnpllmlffogijffan |
설명 | Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist. |
파일 크기 | 12.06 KB |
설치 횟수 | 124 |
현재 버전 | 1.4 |
최근 업데이트 | 2018-03-08 |
출시 날짜 | 2018-03-07 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | rawbytz |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "4 Smart Shortcuts", "version": "1.4", "description": "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.", "manifest_version": 2, "permissions": [ "tabs", "storage" ], "icons": { "128": "4SS_128.png" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "commands": { "site1": { "description": "Launch Site 1" }, "site2": { "description": "Launch Site 2" }, "site3": { "description": "Launch Site 3" }, "site4": { "description": "Launch Site 4" } } } |