Background Changer

apply different colors to webpage background and find which looks perfect

Wat is Background Changer?

Background Changer is een Chrome-extensie ontwikkeld door ermajsurfaceret, en de belangrijkste functie is "apply different colors to webpage background and find which looks perfect".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Background Changer

Download Background Changer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Background Changer Background Changer
ID dolkekeohjbdpclenociegcnolpipafo
Officiële URL https://chrome.google.com/webstore/detail/background-changer/dolkekeohjbdpclenociegcnolpipafo
Beschrijving apply different colors to webpage background and find which looks perfect
Bestandsgrootte 19.77 KB
Aantal Installaties 1,000
Huidige Versie 0.1
Laatst Bijgewerkt 2022-07-07
Publicatiedatum 2022-07-07
Beoordeling 3.00/5 Totaal 1 Beoordelingen
Ontwikkelaar ermajsurfaceret
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}