Hover Lookup

Holding + while hovering over a word will show the wiktionary entry for that word in an inline window.

Hover Lookup क्या है?

Hover Lookup bitsauce द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Holding + while hovering over a word will show the wiktionary entry for that word in an inline window."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Hover Lookup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Pressing  +  while hovering over a word will show the Wiktionary entry for that word in an inline window.

The primary goal of this extension is to make looking up a word quick and easy. As I was transitioning from Firefox, where I had installed the "Wiktionary and Google Translate" add-on, to Chrome, I needed an extension for looking up words. Something that annoyed me about all the look-up extensions I tried, is that you need to select the word you want to look up, making it impossible to look up words in links! This extension fixes that by letting you simply hover over the word of interest, then pressing  +  to show the definition of the word.

Additional functionality:
- In the inline window it is possible to continue navigating to other word definitions, to get a better understanding of the word.
- It is also possible to look up multi-word phrases by selecting the phrase with the text cursor before clicking  + .
- Supports any language and any word written in the Latin alphabet! (As long as there is a Wiktionary entry for that word)                    

एक्सटेंशन की मूल जानकारी

नाम Hover Lookup Hover Lookup
ID ogjdcbnhgjgabidifpnpiidgbkhlpnof
आधिकारिक URL https://chromewebstore.google.com/detail/hover-lookup/ogjdcbnhgjgabidifpnpiidgbkhlpnof
विवरण Holding + while hovering over a word will show the wiktionary entry for that word in an inline window.
फ़ाइल का आकार 101 KB
स्थापना संख्या 371
वर्तमान संस्करण 1.1
अंतिम अपडेट 2017-10-25
प्रकाशन तिथि 2017-10-24
रेटिंग 4.40/5 कुल 5 रेटिंग्स
डेवलपर bitsauce
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/bitsauce/HoverLookup_ChromeExtension/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hover Lookup",
    "version": "1.1",
    "description": "Holding  +  while hovering over a word will show the wiktionary entry for that word in an inline window.",
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*\/"
    ],
    "icons": {
        "16": "icon\/icon_16.png",
        "32": "icon\/icon_32.png",
        "48": "icon\/icon_48.png",
        "128": "icon\/icon_128.png"
    },
    "background": {
        "scripts": [
            "js\/jquery-1.12.4.min.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-1.12.4.min.js",
                "js\/getword.js",
                "js\/hoverdict.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "css\/hoverdict.css"
            ]
        }
    ]
}