Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Co to jest Website Color Palette?
Website Color Palette to rozszerzenie Chrome opracowane przez Forwards, a jego główną funkcją jest „The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Website Color Palette
Pobierz pliki rozszerzeń Website Color Palette w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Website Color Palette |
ID | kegbegkdllkghhaibpbgoeakihgjbmka |
Oficjalny URL | https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka |
Opis | The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl… |
Rozmiar pliku | 48.12 KB |
Liczba instalacji | 731 |
Aktualna Wersja | 0.1.0 |
Ostatnia Aktualizacja | 2020-12-14 |
Data Publikacji | 2020-12-13 |
Ocena | 4.33/5 Łącznie 3 Oceny |
Deweloper | Forwards |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://websitecolorpalette.com |
Adres URL Strony Pomocy | https://websitecolorpalette.com/contact |
Adres URL Strony Polityki Prywatności | http://websitecolorpalette.com/privacy-policy |
Obsługiwane Języki | 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" } } |