WikiReader: Wikipedia Simplified

Get what you need from Wikipedia with a simple and beautiful interface.

WikiReader: Wikipedia Simplified란 무엇입니까?

WikiReader: Wikipedia Simplified은(는) Lillian Chen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get what you need from Wikipedia with a simple and beautiful interface."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

WikiReader: Wikipedia Simplified 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Made for users who primarily aim to retrieve quick and digestible information from Wikipedia, WikiReader introduces a clean and distraction-free interface that adapts to any format without adding complicated tools or requiring any change in behavior from the traditional Wikipedia platform.

Upcoming Features
- clean Main Page as a quick daily news digest
- add fixed icon to scroll back up to table of contents
- user customization on font size, color scheme, etc
- media gallery

If you notice anything you think I should fix, send it to [email protected].                    

확장 프로그램 기본 정보

이름 WikiReader: Wikipedia Simplified WikiReader: Wikipedia Simplified
ID jmhkjngkhknhjmanjmaljpaigdinhdcf
공식 URL https://chromewebstore.google.com/detail/wikireader-wikipedia-simp/jmhkjngkhknhjmanjmaljpaigdinhdcf
설명 Get what you need from Wikipedia with a simple and beautiful interface.
파일 크기 133 KB
설치 횟수 89
현재 버전 1.5
최근 업데이트 2017-09-15
출시 날짜 2017-09-15
평점 4.33/5 총 3 개의 평점
개발자 Lillian Chen
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "minimum_chrome_version": "33",
    "name": "WikiReader: Wikipedia Simplified",
    "short_name": "WikiReader",
    "description": "Get what you need from Wikipedia with a simple and beautiful interface.",
    "version": "1.5",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "WikiReader"
    },
    "background": {
        "scripts": [
            "dist\/js\/jquery.min.js",
            "dist\/js\/background.min.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wikipedia.org\/*"
            ],
            "css": [
                "dist\/css\/wiki.min.css"
            ],
            "js": [
                "dist\/js\/jquery.min.js",
                "dist\/js\/wiki.min.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "dist\/fonts\/*.woff2",
        "dist\/img\/*"
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}