Darker Medium

Read Medium stories with happy eyes

什么是Darker Medium?

Darker Medium是由Mottie开发的Chrome扩展程序,该扩展的主要功能是“Read Medium stories with happy eyes”。

扩展截图

screenshot

下载Darker Medium扩展crx文件

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

扩展使用说明

                        Read Medium stories with happy eyes.

* Applies a customizable dark theme to all medium formatted stories.
* Customize:
  * Header background.
  * Main Accent color.
  * Highlighting color.
  * Link color, hover and underline.
  * Hiding the "get updates" footer.
* Adds syntax highlighting to code and styles embedded gists (https://gist.github.com/).
* Medium story sites are *automatically* detected and styled.
* The advantage of using this extension over Stylus or Stylish is that you install it, customize it and forget about it.                    

扩展基本信息

名称 Darker Medium Darker Medium
ID ffhffkeoooocikeclopcedglnjhoddfj
官方URL https://chromewebstore.google.com/detail/darker-medium/ffhffkeoooocikeclopcedglnjhoddfj
简介 Read Medium stories with happy eyes
文件大小 47.15 KB
安装次数 868
当前版本 1.4.0
更新时间 2018-11-13
上架时间 2018-11-13
评分 4.20/5 共20次评分
开发者 Mottie
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Mottie/Darker-Medium
帮助页面URL https://github.com/Mottie/Darker-Medium/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Darker Medium",
    "version": "1.4.0",
    "description": "Read Medium stories with happy eyes",
    "author": "Rob Garrison",
    "manifest_version": 2,
    "homepage_url": "http:\/\/github.com\/Mottie\/Darker-Medium",
    "permissions": [
        "storage",
        "tabs",
        ""
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "32": "icons\/icon32.png",
            "38": "icons\/icon38.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "js\/settings.js",
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "style.css",
        "gist.css"
    ],
    "commands": {
        "disable-darker-medium": {
            "description": "Toggle Darker Medium"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "32": "icons\/icon32.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}