Night Vision

Make websites easier to view by inverting colors. Open source and customizable.

Night Vision क्या है?

Night Vision nishanths द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make websites easier to view by inverting colors. Open source and customizable."।

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

screenshot
screenshot

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

crx प्रारूप में Night Vision एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Overview
An extension that makes webpages easier to read at night. Open source and customizable. It inverts the colors of the primarily white-themed webpages you visit, making them more suitable for viewing in low light conditions. 

Usage
Click on the icon to enable or disable night vision.
Right click on the icon to see Options.

Features
– Customize the level of inversion.
– Schedule Night Vision to run automatically at the specified time.
– Does not invert images (no more scary photograph negatives).
– A partial mode that allows you to turn off night mode manually for specific tabs even during the automatic time slots.

GitHub
https://github.com/RobZuazua/Night-Vision
Made by @RobZuazua and @nishanths.

License
The MIT License – https://github.com/RobZuazua/Night-Vision/blob/master/LICENSE                    

एक्सटेंशन की मूल जानकारी

नाम Night Vision Night Vision
ID hamjjddlcjfininpcaoankggglkblckb
आधिकारिक URL https://chromewebstore.google.com/detail/night-vision/hamjjddlcjfininpcaoankggglkblckb
विवरण Make websites easier to view by inverting colors. Open source and customizable.
फ़ाइल का आकार 320 KB
स्थापना संख्या 2,713
वर्तमान संस्करण 0.2.1
अंतिम अपडेट 2015-03-23
प्रकाशन तिथि 2015-03-23
रेटिंग 3.51/5 कुल 82 रेटिंग्स
डेवलपर nishanths
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/RobZuazua/Night-Vision
सहायता पृष्ठ URL https://github.com/RobZuazua/Night-Vision/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Night Vision",
    "short_name": "nightvision",
    "description": "Make websites easier to view by inverting colors. Open source and customizable.",
    "version": "0.2.1",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Click to switch modes",
        "default_icon": "icons\/night256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "128": "icons\/night128.png",
        "64": "icons\/night64.png",
        "48": "icons\/night48.png",
        "16": "icons\/night16.png"
    },
    "options_page": "options\/index.html",
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "match_about_blank": true,
            "css": [
                "dummy.css"
            ],
            "run_at": "document_start"
        }
    ]
}