list colors

easly check with different colors to webpage background

Cos'è list colors?

list colors è un'estensione di Chrome sviluppata da normaisheperddg1, e la sua funzione principale è "easly check with different colors to webpage background".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione list colors

Scarica i file di estensione list colors 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

                        make web page look different by adding different colors to background of web page.
1)open web page example : en.wikipedia.org/wiki/Main_Page
2)click on extension icon to open default popup html
3)select any colors 
4)reload tab and try again, if it is not working                    

Informazioni di Base sull'Estensione

Nome list colors list colors
ID fceoddkknbldnpigkpdgpldjbkgammgm
URL Ufficiale https://chrome.google.com/webstore/detail/list-colors/fceoddkknbldnpigkpdgpldjbkgammgm
Descrizione easly check with different colors to webpage background
Dimensione del File 28.14 KB
Conteggio Installazioni 2,000
Versione Corrente 0.0.0.1
Ultimo Aggiornamento 2022-07-18
Data di Pubblicazione 2022-07-18
Sviluppatore normaisheperddg1
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "list colors",
    "description": "easly check with different colors to webpage background",
    "version": "0.0.0.1",
    "manifest_version": 3,
    "action": {
        "default_icon": "logo.png",
        "default_popup": "app.html"
    },
    "icons": {
        "128": "logo.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ]
}