Hoverpedia

Stop getting frustrated with dozens of Wikipedia tabs

什麼是Hoverpedia?

Hoverpedia是由rbilgil開發的Chrome擴展程式,該擴展的主要功能是“Stop getting frustrated with dozens of Wikipedia tabs”。

擴展截圖

screenshot
screenshot

下載Hoverpedia擴展crx文件

下載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
官方網址 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"
    ]
}