Medium Dark

Gives a dark theme to medium web site so is easier to read.

Medium Darkとは何ですか?

Medium Darkはhttp://danielzamorano.proによって開発されたChromeの拡張機能で、その主な機能は「Gives a dark theme to medium web site so is easier to read.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Medium Dark拡張機能のCRXファイルをダウンロード

Medium Dark拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Enjoy medium articles in dark mode. 

We will keep updating and improving this plugin to get better styles, debug any issue and add features.

- Right now it's just working for the article page, home page is still in progress.
- It has permissions for all sites to be able to work also with domains inside medium. (we filter internally so is not affecting other pages)
- Some async content is having problems to get the styles (we are working on it)                    

拡張機能の基本情報

名前 Medium Dark Medium Dark
ID ogghkkonjkglempfkojfbmjgnahllbao
公式URL https://chrome.google.com/webstore/detail/medium-dark/ogghkkonjkglempfkojfbmjgnahllbao
説明 Gives a dark theme to medium web site so is easier to read.
ファイルサイズ 14.21 KB
インストール数 75
現在のバージョン 0.1.0
最終更新日 2019-11-04
公開日 2019-11-04
評価 4.00/5 合計 1 レビュー
開発者 http://danielzamorano.pro
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://danielzamorano.pro
ヘルプページのURL https://danielzamorano.pro
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Medium Dark",
    "version": "0.1.0",
    "description": "Gives a dark theme to medium web site so is easier to read.",
    "permissions": [
        "activeTab"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "medium-dark.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/medium-dark-16.png",
        "32": "images\/medium-dark-32.png",
        "48": "images\/medium-dark-48.png",
        "128": "images\/medium-dark-128.png"
    },
    "manifest_version": 2
}