Wikipedia Peek

Shows previews of linked articles on Wikipedia pages

什麼是Wikipedia Peek?

Wikipedia Peek是由Niklas Gollenstede開發的Chrome擴展程式,該擴展的主要功能是“Shows previews of linked articles on Wikipedia pages”。

擴展截圖

screenshot

下載Wikipedia Peek擴展crx文件

下載Wikipedia Peek擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        When you hover a link to another article on Wikipedia.org/Wikia.com or tap on it, a small pop-up will show you the title section of that article.

Features:
* Full touch support
* Load first paragraph and thumbnail
* 4 themes (Wikipedia, white, black, grey/blue)
* Customizable font-size and transparency
* Works in Chrome, Firefox, Opera and Firefox for Android

This add-ons code is available on GitHub (https://github.com/NiklasGollenstede/wikipedia-peek). If you have any problems, please report them there (https://github.com/NiklasGollenstede/wikipedia-peek/issues).

The add-on itself does not collect any data. Note however, that the article previews are queried form the target host in a separate query each time you hover over a link long enough.                    

擴展基本資訊

名稱 Wikipedia Peek Wikipedia Peek
ID planddpadjimakmjdpnolpjjphhooiej
官方網址 https://chromewebstore.google.com/detail/wikipedia-peek/planddpadjimakmjdpnolpjjphhooiej
簡介 Shows previews of linked articles on Wikipedia pages
檔案大小 64.71 KB
安裝次數 396
目前版本 2.5.3
更新時間 2016-09-08
上架時間 2016-09-08
評分 3.67/5 共 6 次評分
開發者 Niklas Gollenstede
付費類型 free
說明頁面URL https://github.com/NiklasGollenstede/wikipedia-peek/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wikipedia Peek",
    "short_name": "Wikipedia Peek",
    "version": "2.5.3",
    "author": "Niklas Gollenstede",
    "license": "MPL-2.0",
    "description": "Shows previews of linked articles on Wikipedia pages",
    "icons": {
        "128": "icon.png"
    },
    "minimum_chrome_version": "51.0.0",
    "applications": {
        "gecko": {
            "id": "@wikipedia-peek",
            "strict_min_version": "47.0"
        }
    },
    "permissions": [
        "notifications",
        "storage",
        "*:\/\/*.wikipedia.org\/*",
        "*:\/\/*.mediawiki.org\/*",
        "*:\/\/*.wikia.com\/*"
    ],
    "background": {
        "page": "background\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/*",
                "*:\/\/*.mediawiki.org\/*",
                "*:\/\/*.wikia.com\/*"
            ],
            "match_about_blank": false,
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "node_modules\/es6lib\/require.js",
                "node_modules\/es6lib\/namespace.js",
                "node_modules\/es6lib\/object.js",
                "node_modules\/es6lib\/functional.js",
                "node_modules\/es6lib\/concurrent.js",
                "node_modules\/es6lib\/dom.js",
                "node_modules\/es6lib\/network.js",
                "node_modules\/es6lib\/index.js",
                "node_modules\/web-ext-utils\/chrome\/index.js",
                "node_modules\/web-ext-utils\/options\/index.js",
                "common\/options.js",
                "content\/index.js"
            ]
        }
    ],
    "options_ui": {
        "page": "ui\/options\/index.html"
    },
    "web_accessible_resources": [],
    "incognito": "spanning"
}