Get colors

Helps to pick best colors for webpage by changing webpage colors

Apa itu Get colors?

Get colors adalah ekstensi Chrome yang dikembangkan oleh janetjhurley2xx65, dan fitur utamanya adalah "Helps to pick best colors for webpage by changing webpage colors".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Get colors

Unduh file ekstensi Get colors dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Get colors Get colors
ID ddbdapfmebdgkjkjgddapklpghceojmb
URL Resmi https://chrome.google.com/webstore/detail/get-colors/ddbdapfmebdgkjkjgddapklpghceojmb
Deskripsi Helps to pick best colors for webpage by changing webpage colors
Ukuran File 50.35 KB
Jumlah Instalasi 10,000
Versi Saat Ini 0.0.0.1
Terakhir Diperbarui 2022-07-11
Tanggal Publikasi 2022-07-11
Pengembang janetjhurley2xx65
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}