Change content color

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

O que é Change content color?

Change content color é uma extensão do Chrome desenvolvida por Jeff T., e sua principal característica é "Double click any region in a webpage where you want to make its color warm.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Change content color

Baixe arquivos de extensão Change content color no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Change content color Change content color
ID llidcihmjceniojdhhdnejnbbjdepphi
URL Oficial https://chromewebstore.google.com/detail/change-content-color/llidcihmjceniojdhhdnejnbbjdepphi
Descrição Double click any region in a webpage where you want to make its color warm.
Tamanho do Arquivo 92.63 KB
Contagem de Instalações 178
Versão Atual 1.2
Última Atualização 2017-01-10
Data de Publicação 2017-01-10
Classificação 3.67/5 Total de 6 Avaliações
Desenvolvedor Jeff T.
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}