Change content color

Double click any region in a webpage where you want to make its color warm.

Was ist Change content color?

Change content color ist eine Chrome-Erweiterung, die von Jeff T. entwickelt wurde, und ihr Hauptmerkmal ist "Double click any region in a webpage where you want to make its color warm.".

Erweiterungsscreenshots

screenshot

Change content color-Erweiterungs-CRX-Datei herunterladen

Laden Sie Change content color-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

                        For making eyes more comfortable during web surfing, with the extension you can change the background color from white to a warm color for most webpages. Just double click any region where you want to change color in a webpage.

* Some webpages whose content color can not be changed because they may be defended with high security and not allow general script to change them.

Change log:
v1.1 - Urls support ftp now.
v1.2 - More areas can be changed.                    

Grundlegende Informationen zur Erweiterung

Name Change content color Change content color
ID llidcihmjceniojdhhdnejnbbjdepphi
Offizielle URL https://chromewebstore.google.com/detail/change-content-color/llidcihmjceniojdhhdnejnbbjdepphi
Beschreibung Double click any region in a webpage where you want to make its color warm.
Dateigröße 92.63 KB
Installationsanzahl 178
Aktuelle Version 1.2
Letztes Update 2017-01-10
Veröffentlichungsdatum 2017-01-10
Bewertung 3.67/5 Insgesamt 6 Bewertungen
Entwickler Jeff T.
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Change content color",
    "description": "Double click any region in a webpage where you want to make its color warm.",
    "version": "1.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.3.js",
                "bg_change.js",
                "background.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background2.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Change content color",
        "default_icon": "paint-brush-128.png"
    },
    "manifest_version": 2,
    "icons": {
        "64": "paint-brush-128.png"
    }
}