Background Changer

apply different colors to webpage background and find which looks perfect

¿Qué es Background Changer?

Background Changer es una extensión de Chrome desarrollada por ermajsurfaceret, y su función principal es "apply different colors to webpage background and find which looks perfect".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Background Changer

Descarga archivos de extensión Background Changer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Background Changer Background Changer
ID dolkekeohjbdpclenociegcnolpipafo
URL Oficial https://chrome.google.com/webstore/detail/background-changer/dolkekeohjbdpclenociegcnolpipafo
Descripción apply different colors to webpage background and find which looks perfect
Tamaño del Archivo 19.77 KB
Cantidad de Instalaciones 1,000
Versión Actual 0.1
Última Actualización 2022-07-07
Fecha de Publicación 2022-07-07
Calificación 3.00/5 Total de 1 Calificaciones
Desarrollador ermajsurfaceret
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}