Medium Dark

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

Was ist Medium Dark?

Medium Dark ist eine Chrome-Erweiterung, die von http://danielzamorano.pro entwickelt wurde, und ihr Hauptmerkmal ist "Gives a dark theme to medium web site so is easier to read.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Medium Dark-Erweiterungs-CRX-Datei herunterladen

Laden Sie Medium Dark-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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)                    

Grundlegende Informationen zur Erweiterung

Name Medium Dark Medium Dark
ID ogghkkonjkglempfkojfbmjgnahllbao
Offizielle URL https://chrome.google.com/webstore/detail/medium-dark/ogghkkonjkglempfkojfbmjgnahllbao
Beschreibung Gives a dark theme to medium web site so is easier to read.
Dateigröße 14.21 KB
Installationsanzahl 75
Aktuelle Version 0.1.0
Letztes Update 2019-11-04
Veröffentlichungsdatum 2019-11-04
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler http://danielzamorano.pro
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://danielzamorano.pro
Hilfeseite URL https://danielzamorano.pro
Unterstützte Sprachen 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
}