Simple Hotkeys
A lightweight Chrome extension for enhancing existing Chrome hotkeys.
Simple Hotkeys란 무엇입니까?
Simple Hotkeys은(는) liuyang1520에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A lightweight Chrome extension for enhancing existing Chrome hotkeys."입니다.
확장 프로그램 스크린샷
Simple Hotkeys 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# Simple Hotkeys A lightweight Chrome extension for enhancing existing Chrome hotkeys. While there are a plenty of extensions giving users a variety of configurations for shortcuts/hotkeys, the ideas behind this application are - lightweight - preconfigured - intuitively - simple ## Features - Search text in new tab and switch to it: `Ctrl/Command(⌘) + Shift(⇧) + k` - Search text in new tab in background: `Ctrl/Command(⌘) + Shift(⇧) + l` - Pin/Unpin current tab: `Ctrl/Command(⌘) + Shift(⇧) + p` - Detach current tab to a new window: no default - Navigate to last active tab: `Ctrl/Command(⌘) + Shift(⇧) + e` `Command(⌘)` is replaced with `Ctrl` key for Windows computers. ## Issues Please feel free to contribute directly or create issues for any bugs and feature suggestions. ## Source Code https://github.com/liuyang1520/simple-hotkeys
확장 프로그램 기본 정보
이름 | Simple Hotkeys |
ID | ciindhhkpajpgcpemjgpbbieiokifdeh |
공식 URL | https://chromewebstore.google.com/detail/simple-hotkeys/ciindhhkpajpgcpemjgpbbieiokifdeh |
설명 | A lightweight Chrome extension for enhancing existing Chrome hotkeys. |
파일 크기 | 27.72 KB |
설치 횟수 | 23 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2023-08-24 |
출시 날짜 | 2019-06-16 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | liuyang1520 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/liuyang1520/simple-hotkeys |
도움말 페이지 URL | https://github.com/liuyang1520/simple-hotkeys |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.1.2", "manifest_version": 3, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "service_worker": "scripts\/background.js" }, "permissions": [ "scripting", "storage", "background" ], "host_permissions": [ "*:\/\/*\/*" ], "commands": { "search-in-new-active-tab": { "description": "Search and jump", "suggested_key": { "default": "Ctrl+Shift+K", "mac": "Command+Shift+K" } }, "search-in-new-background-tab": { "description": "Search in background", "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" } }, "pin-unpin-tab": { "description": "Pin \/ unpin", "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" } }, "navigate-to-last-active-tab": { "description": "Navigate to last active tab", "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" } }, "extract-tab-to-new-window": { "description": "Extract to window" } }, "action": { "default_popup": "popup.html", "default_title": "Simple-Hotkeys", "default_icon": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" } } } |