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
官方網址 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"
    }
}