Yet Another Hints Extension
A simple hit-a-hint extension
Qu'est-ce que Yet Another Hints Extension ?
Yet Another Hints Extension est une extension Chrome développée par Lepovirta, et sa fonction principale est "A simple hit-a-hint extension".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Yet Another Hints Extension
Téléchargez les fichiers d'extension Yet Another Hints Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Yet Another Hints Extension |
ID | eimkmfhfckmajkednnnhkacajflcjinm |
URL Officiel | https://chromewebstore.google.com/detail/yet-another-hints-extensi/eimkmfhfckmajkednnnhkacajflcjinm |
Description | A simple hit-a-hint extension |
Taille du Fichier | 26.26 KB |
Nombre d'Installations | 221 |
Version Actuelle | 1.4.0 |
Dernière Mise à Jour | 2021-03-21 |
Date de Publication | 2019-03-20 |
Évaluation | 3.00/5 Total 6 Évaluations |
Développeur | Lepovirta |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://gitlab.com/lepovirta/yahe |
URL de la Page d'Aide | https://gitlab.com/lepovirta/yahe/-/issues |
Langues Prises en Charge | 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" } |