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」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
}