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
    }
}