Yet Another Hints Extension
A simple hit-a-hint extension
Yet Another Hints Extension란 무엇입니까?
Yet Another Hints Extension은(는) Lepovirta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple hit-a-hint extension"입니다.
확장 프로그램 스크린샷
Yet Another Hints Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Yet Another Hints Extension allows you to click elements without using your mouse. Pressing Ctrl+m generates hints for each clickable element in the current view. Each hint has a character code. When you type a code, a hint gets highlighted, and you can "click" the corresponding element by pressing the return key. You can also add ctrl, shift, alt and meta modifiers when you press return to simulate ctrl+click and so on. You can customize the keybinding and hint characters in the extension's options page. If you want to contribute by reporting bugs, writing documentation or submitting patches, check out the extension's Gitlab page: https://gitlab.com/lepovirta/yahe
확장 프로그램 기본 정보
이름 | Yet Another Hints Extension |
ID | eimkmfhfckmajkednnnhkacajflcjinm |
공식 URL | https://chromewebstore.google.com/detail/yet-another-hints-extensi/eimkmfhfckmajkednnnhkacajflcjinm |
설명 | A simple hit-a-hint extension |
파일 크기 | 26.26 KB |
설치 횟수 | 221 |
현재 버전 | 1.4.0 |
최근 업데이트 | 2021-03-21 |
출시 날짜 | 2019-03-20 |
평점 | 3.00/5 총 6 개의 평점 |
개발자 | Lepovirta |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://gitlab.com/lepovirta/yahe |
도움말 페이지 URL | https://gitlab.com/lepovirta/yahe/-/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Yet Another Hints Extension", "short_name": "YAHE", "manifest_version": 2, "description": "A simple hit-a-hint extension", "options_ui": { "page": "options\/index.html", "chrome_style": true }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "match_about_blank": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "css": [ "yahe.css" ], "js": [ "yahe.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "scripts": [ "yahe-bg.js" ] }, "version": "1.4.0" } |