Darker Medium

Read Medium stories with happy eyes

Was ist Darker Medium?

Darker Medium ist eine Chrome-Erweiterung, die von Mottie entwickelt wurde, und ihr Hauptmerkmal ist "Read Medium stories with happy eyes".

Erweiterungsscreenshots

screenshot

Darker Medium-Erweiterungs-CRX-Datei herunterladen

Laden Sie Darker Medium-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Darker Medium Darker Medium
ID ffhffkeoooocikeclopcedglnjhoddfj
Offizielle URL https://chromewebstore.google.com/detail/darker-medium/ffhffkeoooocikeclopcedglnjhoddfj
Beschreibung Read Medium stories with happy eyes
Dateigröße 47.15 KB
Installationsanzahl 868
Aktuelle Version 1.4.0
Letztes Update 2018-11-13
Veröffentlichungsdatum 2018-11-13
Bewertung 4.20/5 Insgesamt 20 Bewertungen
Entwickler Mottie
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Mottie/Darker-Medium
Hilfeseite URL https://github.com/Mottie/Darker-Medium/issues
Unterstützte Sprachen 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
    }
}