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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}