Background Changer

apply different colors to webpage background and find which looks perfect

Vad är Background Changer?

Background Changer är en Chrome-tillägg utvecklad av ermajsurfaceret, och dess huvudfunktion är "apply different colors to webpage background and find which looks perfect".

Tilläggsskärmbilder

screenshot

Ladda ner Background Changer-förlängningens CRX-fil

Ladda ner Background Changer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Background Changer Background Changer
ID dolkekeohjbdpclenociegcnolpipafo
Officiell webbadress https://chrome.google.com/webstore/detail/background-changer/dolkekeohjbdpclenociegcnolpipafo
Beskrivning apply different colors to webpage background and find which looks perfect
Filstorlek 19.77 KB
Antal Installationer 1,000
Aktuell Version 0.1
Senast Uppdaterad 2022-07-07
Publiceringsdatum 2022-07-07
Betyg 3.00/5 Totalt 1 Betyg
Utvecklare ermajsurfaceret
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}