Get colors

Helps to pick best colors for webpage by changing webpage colors

Cos'è Get colors?

Get colors è un'estensione di Chrome sviluppata da janetjhurley2xx65, e la sua funzione principale è "Helps to pick best colors for webpage by changing webpage colors".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Get colors

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

                        1)open web page example : en.wikipedia.org/wiki/Main_Page
2)click on extension icon to see default popup html
3)change color values  and pick right color for your webpage
4)reload tab if it does not work and try again.                    

Informazioni di Base sull'Estensione

Nome Get colors Get colors
ID ddbdapfmebdgkjkjgddapklpghceojmb
URL Ufficiale https://chrome.google.com/webstore/detail/get-colors/ddbdapfmebdgkjkjgddapklpghceojmb
Descrizione Helps to pick best colors for webpage by changing webpage colors
Dimensione del File 50.35 KB
Conteggio Installazioni 10,000
Versione Corrente 0.0.0.1
Ultimo Aggiornamento 2022-07-11
Data di Pubblicazione 2022-07-11
Sviluppatore janetjhurley2xx65
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": "Get colors",
    "version": "0.0.0.1",
    "description": "Helps to pick best colors for webpage by changing webpage colors",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ]
}