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
Eメール [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
    }
}