Darker Medium

Read Medium stories with happy eyes

Τι είναι το Darker Medium;

Το Darker Medium είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mottie, και η κύρια λειτουργία του είναι "Read Medium stories with happy eyes".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Darker Medium

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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
    }
}