Video Adjust for Netflix

Easily adjust the brightness, saturation, and contrast of Netflix streams!

Τι είναι το Video Adjust for Netflix;

Το Video Adjust for Netflix είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Stephen Rose, και η κύρια λειτουργία του είναι "Easily adjust the brightness, saturation, and contrast of Netflix streams!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Video Adjust for Netflix

Λήψη αρχείων επέκτασης Video Adjust for Netflix σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension is a fan creation and is not associated with Netflix Inc. in any way.

Easily adjust the brightness, saturation, and contrast of Netflix streams!

Features:
► Simple interface and live preview of video filter!
► Settings are automatically saved and applied to the next video.
► GPU accelerated to avoid video lag.

How to use:
1. Install the add-on
2. Start playing any video on Netflix and the add-on icon will turn from grey to red.
3. Click the red icon and change the video settings!

Explanation of permissions:
"Read and change your data on all netflix.com sites." – Required so that JavaScript can be added to the page and change the CSS properties of the video.
"Read your browsing history" – Required to display the extension's settings icon when you start playing a Netflix stream (by checking the URL).

Change log:
# [1.5.0] - 2016-12-29
- Fixed bug which caused the video stream to be displayed in the top-left corner of the screen.

# [1.4.0] - 2016-11-30
- Updated to work with latest Netflix layout (and backwards compatible).

# [1.2.0] - 2016-03-15
- Change of branding and title to clarify this extension is unofficial and not associated with Netflix Inc.

# [1.1.0] - 2015-07-27
- Extension now compatible with the updated Netflix layout.

# [1.0.0] - 2015-03-25
- Initial version                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Video Adjust for Netflix Video Adjust for Netflix
ID gjgmceajgibmifohoegfllnnbjmabije
Επίσημο URL https://chromewebstore.google.com/detail/video-adjust-for-netflix/gjgmceajgibmifohoegfllnnbjmabije
Περιγραφή Easily adjust the brightness, saturation, and contrast of Netflix streams!
Μέγεθος Αρχείου 425 KB
Αριθμός Εγκαταστάσεων 12,843
Τρέχουσα Έκδοση 1.5.0
Τελευταία Ενημέρωση 2016-12-30
Ημερομηνία Δημοσίευσης 2016-12-30
Αξιολόγηση 4.05/5 Συνολικά 78 Αξιολογήσεις
Προγραμματιστής Stephen Rose
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.stephenr.co.uk/video-adjust-netflix
Διεύθυνση URL της Σελίδας Βοήθειας http://www.stephenr.co.uk/video-adjust-netflix#feedback
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Adjust for Netflix",
    "version": "1.5.0",
    "manifest_version": 2,
    "description": "Easily adjust the brightness, saturation, and contrast of Netflix streams!",
    "homepage_url": "http:\/\/stephenr.co.uk\/video-adjust-netflix",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "*:\/\/*.netflix.com\/*"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_title": "Video Adjust",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "css": [
                "css\/inject.css"
            ],
            "js": [
                "vendor\/jquery\/jquery-2.1.3.min.js",
                "js\/inject.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}