Dark Mode View

Allows you to enable all websites to be dark mode to ease eye strain.

Dark Mode View란 무엇입니까?

Dark Mode View은(는) http://darkview.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to enable all websites to be dark mode to ease eye strain. "입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Dark Mode View other wise known as Dark view for short. Is a dark mode extension created to give users the ability to set their favorite websites to be dark mode. Dark View also has an invert option that turns white text into yellow to assist with reading in the dark.                    

확장 프로그램 기본 정보

이름 Dark Mode View Dark Mode View
ID ooliejnanmkmfamajdfidknhaklmiedd
공식 URL https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd
설명 Allows you to enable all websites to be dark mode to ease eye strain.
파일 크기 20.61 KB
설치 횟수 5,870
현재 버전 1.0
최근 업데이트 2021-03-30
출시 날짜 2021-03-30
평점 4.50/5 총 2 개의 평점
개발자 http://darkview.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://darkview.org/
도움말 페이지 URL https://darkview.org/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Greg Henderson",
    "homepage_url": "https:\/\/darkview.org",
    "name": "Dark Mode View",
    "description": "Allows you to enable all websites to be dark mode to ease eye strain. ",
    "icons": {
        "128": "icon-128.png"
    },
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "autotoggle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_title": "Dark Mode Viewer",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}