Yet Another Hints Extension

A simple hit-a-hint extension

Yet Another Hints Extension क्या है?

Yet Another Hints Extension Lepovirta द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple hit-a-hint extension"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Yet Another Hints Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
}