Darker Medium

Read Medium stories with happy eyes

Co je Darker Medium?

Darker Medium je rozšíření Chrome vyvinuté Mottie, a jeho hlavní funkcí je „Read Medium stories with happy eyes“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Darker Medium

Stáhněte si soubory rozšíření Darker Medium ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Darker Medium Darker Medium
ID ffhffkeoooocikeclopcedglnjhoddfj
Oficiální URL https://chromewebstore.google.com/detail/darker-medium/ffhffkeoooocikeclopcedglnjhoddfj
Popis Read Medium stories with happy eyes
Velikost souboru 47.15 KB
Počet instalací 868
Aktuální Verze 1.4.0
Poslední Aktualizace 2018-11-13
Datum Vydání 2018-11-13
Hodnocení 4.20/5 Celkem 20 Hodnocení
Vývojář Mottie
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Mottie/Darker-Medium
URL Stránky Nápovědy https://github.com/Mottie/Darker-Medium/issues
Podporované Jazyky 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
    }
}