Hover Lookup

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

Hover Lookupคืออะไร?

Hover Lookup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย Hover Lookup

ดาวน์โหลดไฟล์ส่วนขยาย Hover Lookup ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}