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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
    }
}