Wiki Reader

Adjusts Formatting of Wiki Pages for better readability

什么是Wiki Reader?

Wiki Reader是由Johnbuble开发的Chrome扩展程序,该扩展的主要功能是“Adjusts Formatting of Wiki Pages for better readability”。

扩展截图

screenshot
screenshot

下载Wiki Reader扩展crx文件

下载Wiki Reader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This Chrome Extension modifies wikipedia webpages to:
- limit the horizontal space
- turn the page to dark mode
for better readability, especially on large screens.

No tracking, no ads.                    

扩展基本信息

名称 Wiki Reader Wiki Reader
ID jdkaiipcpgdgbbiepihiggaflgipbnhb
官方URL https://chromewebstore.google.com/detail/wiki-reader/jdkaiipcpgdgbbiepihiggaflgipbnhb
简介 Adjusts Formatting of Wiki Pages for better readability
文件大小 42.25 KB
安装次数 110
当前版本 0.4
更新时间 2020-09-21
上架时间 2020-07-05
评分 5.00/5 共4次评分
开发者 Johnbuble
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/OlJohnny/Wiki-Reader
帮助页面URL https://github.com/OlJohnny/Wiki-Reader/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wiki Reader",
    "description": "Adjusts Formatting of Wiki Pages for better readability",
    "author": "Johnbuble",
    "version": "0.4",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Wiki Reader",
        "default_icon": {
            "38": "icons\/icon_38.png",
            "19": "icons\/icon_19.png"
        }
    },
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wikipedia.org\/*"
            ],
            "run-at": "document_start",
            "css": [
                "content.css"
            ]
        }
    ]
}