Background Changer

apply different colors to webpage background and find which looks perfect

Cos'è Background Changer?

Background Changer è un'estensione di Chrome sviluppata da ermajsurfaceret, e la sua funzione principale è "apply different colors to webpage background and find which looks perfect".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Background Changer

Scarica i file di estensione Background Changer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Background Changer Background Changer
ID dolkekeohjbdpclenociegcnolpipafo
URL Ufficiale https://chrome.google.com/webstore/detail/background-changer/dolkekeohjbdpclenociegcnolpipafo
Descrizione apply different colors to webpage background and find which looks perfect
Dimensione del File 19.77 KB
Conteggio Installazioni 1,000
Versione Corrente 0.1
Ultimo Aggiornamento 2022-07-07
Data di Pubblicazione 2022-07-07
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore ermajsurfaceret
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}