Yet Another Hints Extension
A simple hit-a-hint extension
¿Qué es Yet Another Hints Extension?
Yet Another Hints Extension es una extensión de Chrome desarrollada por Lepovirta, y su función principal es "A simple hit-a-hint extension".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Yet Another Hints Extension
Descarga archivos de extensión Yet Another Hints Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Yet Another Hints Extension |
ID | eimkmfhfckmajkednnnhkacajflcjinm |
URL Oficial | https://chromewebstore.google.com/detail/yet-another-hints-extensi/eimkmfhfckmajkednnnhkacajflcjinm |
Descripción | A simple hit-a-hint extension |
Tamaño del Archivo | 26.26 KB |
Cantidad de Instalaciones | 221 |
Versión Actual | 1.4.0 |
Última Actualización | 2021-03-21 |
Fecha de Publicación | 2019-03-20 |
Calificación | 3.00/5 Total de 6 Calificaciones |
Desarrollador | Lepovirta |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://gitlab.com/lepovirta/yahe |
URL de la Página de Ayuda | https://gitlab.com/lepovirta/yahe/-/issues |
Idiomas Soportados | 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" } |