Night Owl - Smart Dark Mode

Instantly transform websites into a comfortable, eye-friendly dark mode experience.

Night Owl - Smart Dark Mode란 무엇입니까?

Night Owl - Smart Dark Mode은(는) Music For Trees에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instantly transform websites into a comfortable, eye-friendly dark mode experience."입니다.

확장 프로그램 스크린샷

screenshot

Night Owl - Smart Dark Mode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Dark mode for any website!

Many websites don't have a dark mode option, so we made Night Owl. Click the owl icon to turn on dark mode for any site, and the extension will remember your preferences. Enjoy a comfortable browsing experience with your favorite sites in dark mode!                    

확장 프로그램 기본 정보

이름 Night Owl - Smart Dark Mode Night Owl - Smart Dark Mode
ID ifflcmkgdhiopibdbljombcjfeeldhnp
공식 URL https://chromewebstore.google.com/detail/night-owl-smart-dark-mode/ifflcmkgdhiopibdbljombcjfeeldhnp
설명 Instantly transform websites into a comfortable, eye-friendly dark mode experience.
파일 크기 6.55 KB
설치 횟수 55
현재 버전 1.0
최근 업데이트 2023-04-13
출시 날짜 2023-04-13
평점 5.00/5 총 2 개의 평점
개발자 Music For Trees
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://policies.google.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Night Owl - Smart Dark Mode",
    "version": "1.0",
    "description": "Instantly transform websites into a comfortable, eye-friendly dark mode experience.",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}