Night Owl

An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.

Night Owl란 무엇입니까?

Night Owl은(는) Jishaal Kalyan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise."입니다.

확장 프로그램 스크린샷

screenshot

Night Owl 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.

Is it a dark and rainy day? You can turn off the automatic scheduler in the Settings to enable night mode manually again. 

The following sites are currently supported
- twitter.com
- reddit.com


***Coming Soon***
- Automatic toggling night mode when the user is idle
- More sites that support night mode

=======
Owl logo from https://www.emojione.com/                    

확장 프로그램 기본 정보

이름 Night Owl Night Owl
ID iagomahcookmbnimmomjcmiaimmhompf
공식 URL https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf
설명 An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.
파일 크기 554 KB
설치 횟수 203
현재 버전 1.1.0
최근 업데이트 2022-10-16
출시 날짜 2019-09-07
개발자 Jishaal Kalyan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jishaal/night-owl-extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Night Owl",
    "name": "Night Owl",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Night Owl"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon_128x128.png",
        "64": "icon_64x64.png",
        "32": "icon_32x32.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "cookies",
        "geolocation",
        "storage",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.reddit.com\/*"
    ]
}