Hotkeys for Search
Perform a search for selected text using keyboard shortcuts.
Hotkeys for Search란 무엇입니까?
Hotkeys for Search은(는) Juuso H에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Perform a search for selected text using keyboard shortcuts."입니다.
확장 프로그램 스크린샷
Hotkeys for Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
1. Select text on a web page using the mouse. 2. Press a keyboard shortcut to search for the selected text on your desired website. Default shortcuts: Alt+Q = Google Alt+W = Wikipedia Alt+A = Google Images Alt+S = YouTube The target search websites and keyboard shortcuts can be changed from the extension settings menu. Source code: https://github.com/Juuso-h/hotkeys-for-search
확장 프로그램 기본 정보
이름 | Hotkeys for Search |
ID | gfmeadbjkfhkeklgaomifcaihbhpeido |
공식 URL | https://chromewebstore.google.com/detail/hotkeys-for-search/gfmeadbjkfhkeklgaomifcaihbhpeido |
설명 | Perform a search for selected text using keyboard shortcuts. |
파일 크기 | 22.13 KB |
설치 횟수 | 1,779 |
현재 버전 | 1.3.1 |
최근 업데이트 | 2020-11-23 |
출시 날짜 | 2020-06-28 |
평점 | 4.45/5 총 20 개의 평점 |
개발자 | Juuso H |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Juuso-h/hotkeys-for-search |
지원되는 언어 | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "version": "1.3.1", "manifest_version": 2, "description": "__MSG_description__", "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon.png", "128": "icon2.png" }, "permissions": [ "commands", "activeTab", "storage" ], "commands": { "search1": { "suggested_key": { "default": "Alt+Q" }, "description": "Website 1" }, "search2": { "suggested_key": { "default": "Alt+W" }, "description": "Website 2" }, "search3": { "suggested_key": { "default": "Alt+A" }, "description": "Website 3" }, "search4": { "suggested_key": { "default": "Alt+S" }, "description": "Website 4" } }, "browser_action": { "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": true } } |