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文件
下载Yet Another Hints Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } |