Night Video Tuner

Protect your eyes and improve your sleeping cycles by adjusting video temperature and many other properties!

Night Video Tuner란 무엇입니까?

Night Video Tuner은(는) Pyves에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Protect your eyes and improve your sleeping cycles by adjusting video temperature and many other properties!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ● Use on all HTML5 video players: Youtube, Netflix, BBC iPlayer, Vimeo and more!
● Adjust video temperature to filter out blue light before sleep, which can distort your circadian rhythm according to recent research.
● Control 10 other filters to reduce eye strain and enjoy a better night viewing experience: brightness, contrast, gamma, opacity, saturate, grayscale, sepia, invert, hue and blur.
● Not only useful in night mode: tune video settings the other way around for bright environments.
● Improve the visual quality of videos and enjoy more vibrant images at all times.
● Enable, disable and precisely manage filters on the fly.
● Lightweight and user-friendly interface.
● Free and open-source.
● Available in English, French, Polish, Czech, Chinese, Turkish, Ukrainian, and Russian.

Support the project by leaving a review or starring its GitHub repository (https://github.com/PyvesB/night-video-tuner)!

Note: this extension is not affiliated to Netflix, Youtube or the BBC. The screenshots are only provided as usage examples.                    

확장 프로그램 기본 정보

이름 Night Video Tuner Night Video Tuner
ID ogffaloegjglncjfehdfplabnoondfjo
공식 URL https://chromewebstore.google.com/detail/night-video-tuner/ogffaloegjglncjfehdfplabnoondfjo
설명 Protect your eyes and improve your sleeping cycles by adjusting video temperature and many other properties!
파일 크기 28.82 KB
설치 횟수 1,216
현재 버전 1.2.6
최근 업데이트 2023-03-11
출시 날짜 2018-10-17
평점 4.08/5 총 24 개의 평점
개발자 Pyves
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/PyvesB/night-video-tuner
도움말 페이지 URL https://github.com/PyvesB/night-video-tuner/issues
지원되는 언어 en,fr,tr,pl,cs,ru,uk,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Night Video Tuner",
    "version": "1.2.6",
    "description": "__MSG_manifest_description__",
    "author": "PyvesB",
    "homepage_url": "https:\/\/github.com\/PyvesB\/night-video-tuner",
    "default_locale": "en",
    "offline_enabled": true,
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_adjust_video_properties__",
        "default_icon": "icons\/icon-pause.png",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "filters\/filters.js",
                "content\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "48": "icons\/icon-medium.png",
        "128": "icons\/icon-large.png"
    },
    "manifest_version": 2
}