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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Protect your eyes and improve your sleeping cycles by adjusting video temperature and many other properties!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Night Video Tuner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}