Dark Mode For Medium

Dark Mode for Medium, Helps you to Decrease your Eye Strain

Dark Mode For Medium란 무엇입니까?

Dark Mode For Medium은(는) Tanmay에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Dark Mode for Medium, Helps you to Decrease your Eye Strain"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Dark Mode For Medium 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        On Average people spend more than 5 hours Reading Medium Articles which can cause Eye Strain so to reduce that I have created Dark Mode for Medium                    

확장 프로그램 기본 정보

이름 Dark Mode For Medium Dark Mode For Medium
ID nbhcholhhmhlbiphogmfinfelpgcjgkb
공식 URL https://chromewebstore.google.com/detail/dark-mode-for-medium/nbhcholhhmhlbiphogmfinfelpgcjgkb
설명 Dark Mode for Medium, Helps you to Decrease your Eye Strain
파일 크기 9.37 KB
설치 횟수 294
현재 버전 1.2
최근 업데이트 2021-08-30
출시 날짜 2021-08-30
평점 2.50/5 총 2 개의 평점
개발자 Tanmay
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://www.youtube.com/channel/UCdr9NmszjQ49_f9wV-egc7A
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dark Mode For Medium",
    "version": "1.2",
    "description": "Dark Mode for Medium, Helps you to Decrease your Eye Strain",
    "author": "Tanmay",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.medium.com\/*"
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "ON or OFF"
    },
    "icons": {
        "16": "images\/16x16.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "web_accessible_resources": [
        "styles.css"
    ],
    "permissions": [
        "activeTab"
    ]
}