Youtube Colors Filters

A simple tool to change brightness, contrast, saturation, sepia, invert of any youtube video you watch.

Was ist Youtube Colors Filters?

Youtube Colors Filters ist eine Chrome-Erweiterung, die von tareq.ateik entwickelt wurde, und ihr Hauptmerkmal ist "A simple tool to change brightness, contrast, saturation, sepia, invert of any youtube video you watch.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Youtube Colors Filters-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Colors Filters-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A simple tool to change brightness, contrast, saturation, sepia, invert of any youtube video you watch. This tool is a much if you have any vision problems or the video is just dark.                    

Grundlegende Informationen zur Erweiterung

Name Youtube Colors Filters Youtube Colors Filters
ID ojgmbbegpppllieiibjipgbpbnmonofi
Offizielle URL https://chrome.google.com/webstore/detail/youtube-colors-filters/ojgmbbegpppllieiibjipgbpbnmonofi
Beschreibung A simple tool to change brightness, contrast, saturation, sepia, invert of any youtube video you watch.
Dateigröße 53.84 KB
Installationsanzahl 1,000
Aktuelle Version 0.0.1
Letztes Update 2016-02-27
Veröffentlichungsdatum 2016-02-27
Bewertung 4.69/5 Insgesamt 29 Bewertungen
Entwickler tareq.ateik
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Colors Filters",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "A simple tool to change brightness, contrast, saturation, sepia, invert of any youtube video you watch.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery-1.12.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}