Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Qu'est-ce que Website Color Palette ?
Website Color Palette est une extension Chrome développée par Forwards, et sa fonction principale est "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Website Color Palette
Téléchargez les fichiers d'extension Website Color Palette au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Website Color Palette |
ID | kegbegkdllkghhaibpbgoeakihgjbmka |
URL Officiel | https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka |
Description | The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl… |
Taille du Fichier | 48.12 KB |
Nombre d'Installations | 731 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2020-12-14 |
Date de Publication | 2020-12-13 |
Évaluation | 4.33/5 Total 3 Évaluations |
Développeur | Forwards |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://websitecolorpalette.com |
URL de la Page d'Aide | https://websitecolorpalette.com/contact |
URL de la Page de Politique de Confidentialité | http://websitecolorpalette.com/privacy-policy |
Langues Prises en Charge | 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" } } |