Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Apa itu Website Color Palette?
Website Color Palette adalah ekstensi Chrome yang dikembangkan oleh Forwards, dan fitur utamanya adalah "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Website Color Palette
Unduh file ekstensi Website Color Palette 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
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl and more... - Copy the color instantly (on click). - No waiting times: 5 milliseconds. - No fake or random colors.
Informasi Dasar Ekstensi
Nama | Website Color Palette |
ID | kegbegkdllkghhaibpbgoeakihgjbmka |
URL Resmi | https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka |
Deskripsi | The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl… |
Ukuran File | 48.12 KB |
Jumlah Instalasi | 731 |
Versi Saat Ini | 0.1.0 |
Terakhir Diperbarui | 2020-12-14 |
Tanggal Publikasi | 2020-12-13 |
Penilaian | 4.33/5 Total 3 Penilaian |
Pengembang | Forwards |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://websitecolorpalette.com |
URL Halaman Bantuan | https://websitecolorpalette.com/contact |
URL Halaman Kebijakan Privasi | http://websitecolorpalette.com/privacy-policy |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Website Color Palette", "manifest_version": 2, "version": "0.1.0", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "chroma.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icons\/icon128.png", "default_popup": ".\/popup\/index.html", "default_title": "Website Color Palette" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |