Change content color

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

什么是Change content color?

Change content color是由Jeff T.开发的Chrome扩展程序,该扩展的主要功能是“Double click any region in a webpage where you want to make its color warm.”。

扩展截图

screenshot

下载Change content color扩展crx文件

下载Change content color扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Change content color Change content color
ID llidcihmjceniojdhhdnejnbbjdepphi
官方URL https://chromewebstore.google.com/detail/change-content-color/llidcihmjceniojdhhdnejnbbjdepphi
简介 Double click any region in a webpage where you want to make its color warm.
文件大小 92.63 KB
安装次数 178
当前版本 1.2
更新时间 2017-01-10
上架时间 2017-01-10
评分 3.67/5 共6次评分
开发者 Jeff T.
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}