Custom Hotkeys
Allows you to add custom hotkeys to a website.
Custom Hotkeys란 무엇입니까?
Custom Hotkeys은(는) Scott Zackrison에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to add custom hotkeys to a website."입니다.
확장 프로그램 스크린샷
Custom Hotkeys 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Allows you to set up hotkeys on any website. Use your keyboard to simulate a click on an element on the screen. It uses jQuery selectors. I use it on pocketcasts.com to control the on screen controls. I made them the same as Youtubes keyboard controls. Updated: 7/19/17 --> fixed a bug when typing in an input or textarea firing the event.
확장 프로그램 기본 정보
이름 | Custom Hotkeys |
ID | dogblfnfkmjolfcbpgfkhpaahocjhkbk |
공식 URL | https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk |
설명 | Allows you to add custom hotkeys to a website. |
파일 크기 | 82.95 KB |
설치 횟수 | 1,477 |
현재 버전 | 1.1 |
최근 업데이트 | 2017-07-19 |
출시 날짜 | 2017-07-19 |
평점 | 4.29/5 총 7 개의 평점 |
개발자 | Scott Zackrison |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Hotkeys", "description": "Allows you to add custom hotkeys to a website.", "version": "1.1", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.4.min.js", "content.js" ], "all_frames": true } ], "options_page": "options.html", "icons": { "48": "icon_48.png", "24": "icon_24.png" }, "permissions": [ "storage" ] } |