Hoverpedia

Stop getting frustrated with dozens of Wikipedia tabs

Hoverpediaคืออะไร?

Hoverpedia เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rbilgil และคุณลักษณะหลักของมันคือ "Stop getting frustrated with dozens of Wikipedia tabs"

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

screenshot
screenshot

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

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

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

                        Browsing Wikipedia should be seamless and painless, but the number of tabs you end up opening is ridiculous! With this extension, hover over any Wikipedia link to read the first paragraph instantly.

Changelog

v1.3:
    - All wikipedia links now have an outline on hover
    - Links to wikipedia from other websites all have an outline

v1.2:
    - Hover popup now appears in different positions if available screen-space dictates as such
    - Fixed some paragraphs not displaying fully
    - Fixed some cities only showing "Coordinates:" instead of the first paragraph.

v1.1:
    - Improved visuals
    - Many under-the-hood changes to improve the consistency of how the popup displays
    - Displays the popup from any site that links to Wikipedia!
    - Updated to have logo in extension settings

v1.0 Initial release:
    - Supports hovering over any link within Wikipedia to see preview of the link                    

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

ชื่อ Hoverpedia Hoverpedia
ID pajemgajnfpngnbehkegefogdhddhemh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hoverpedia/pajemgajnfpngnbehkegefogdhddhemh
คำอธิบาย Stop getting frustrated with dozens of Wikipedia tabs
ขนาดไฟล์ 86.48 KB
จำนวนการติดตั้ง 87
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2014-04-12
วันที่เผยแพร่ 2014-04-12
คะแนน 3.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา rbilgil
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hoverpedia",
    "description": "Stop getting frustrated with dozens of Wikipedia tabs",
    "version": "1.3",
    "permissions": [
        "http:\/\/*.wikipedia.org\/*",
        "https:\/\/*.wikipedia.org\/*"
    ],
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_128.png",
        "default_title": "Hoverpedia"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/hoverpedia.css"
            ],
            "js": [
                "lib\/jquery-2.1.0.min.js",
                "lib\/hoverIntent.js",
                "src\/hoverpedia.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "loading.gif"
    ]
}