Background Changer

apply different colors to webpage background and find which looks perfect

O que é Background Changer?

Background Changer é uma extensão do Chrome desenvolvida por ermajsurfaceret, e sua principal característica é "apply different colors to webpage background and find which looks perfect".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Background Changer

Baixe arquivos de extensão Background Changer 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

                        Background Changer help you apply different colors to your favorite websites background.                    

Informações Básicas da Extensão

Nome Background Changer Background Changer
ID dolkekeohjbdpclenociegcnolpipafo
URL Oficial https://chrome.google.com/webstore/detail/background-changer/dolkekeohjbdpclenociegcnolpipafo
Descrição apply different colors to webpage background and find which looks perfect
Tamanho do Arquivo 19.77 KB
Contagem de Instalações 1,000
Versão Atual 0.1
Última Atualização 2022-07-07
Data de Publicação 2022-07-07
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor ermajsurfaceret
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Background Changer",
    "description": "apply different colors to webpage background and find which looks perfect",
    "version": "0.1",
    "icons": {
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "app.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ]
}