Hover

Hover, preview

Hoverคืออะไร?

Hover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hoverapp2021 และคุณลักษณะหลักของมันคือ "Hover, preview"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hover

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

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

                        The easiest and most convenient way to navigate through links/websites without leaving your current tab.


Hover’s chrome extension saves your time by letting you view a link’s content or a plain text by just hovering over it without opening it in a new tab. 


1. Hover to view a link: Whether you are scrolling through a social media newsfeed, an e-commerce catalog, or even a mere link you have received, Hover lets you view the content of the link without leaving your current tab. Hover over any link for 2 seconds to view the content in a lightweight popup box. IT IS THAT SIMPLE. Hover on a link-> Indulge on the content as a pop up-> click on the parent screen when you are done and continue on the same tab.

2. Hover on a selected text to research-> You want to do a quick google look up on a certain text/phrase without leaving your current tab? Stop wasting your time opening a new tab and copy/paste to search. Hover lets you look up the text via a lightweight popup by mere hovering over the text after you select it. 

3. Hot Key to research: Press CTRL+SHIFT+H to access the hover pop up to do a quick google search without leaving your current tab.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hover Hover
ID eiiibfemcfcehadokcldlcdljfdlmolj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hover/eiiibfemcfcehadokcldlcdljfdlmolj
คำอธิบาย Hover, preview
ขนาดไฟล์ 217 KB
จำนวนการติดตั้ง 2,823
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-12-14
วันที่เผยแพร่ 2021-11-24
คะแนน 4.37/5 รวมทั้งหมด 30 คะแนน
ผู้พัฒนา hoverapp2021
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hover",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Hover, preview",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking",
        "tabs"
    ],
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_title": "Hover Settings"
    },
    "web_accessible_resources": [
        "icons\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/main.css"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/helpers\/jquery.js",
                "src\/inject\/helpers\/jqueryui.js",
                "src\/inject\/helpers\/underscore-umd-min.js",
                "src\/inject\/helpers\/helpers.js",
                "src\/inject\/helpers\/purify.js",
                "src\/inject\/helpers\/readability.js",
                "src\/inject\/helpers\/progress.js",
                "src\/inject\/injector.js",
                "src\/inject\/main.js"
            ]
        }
    ],
    "commands": {
        "wordLookup": {
            "suggested_key": {
                "windows": "Ctrl+Shift+H",
                "mac": "MacCtrl+Shift+H",
                "chromeos": "Ctrl+Shift+H",
                "linux": "Ctrl+Shift+H"
            },
            "description": "Lookup any word using Google"
        }
    }
}