Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Was ist Website Color Palette?
Website Color Palette ist eine Chrome-Erweiterung, die von Forwards entwickelt wurde, und ihr Hauptmerkmal ist "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".
Erweiterungsscreenshots
Website Color Palette-Erweiterungs-CRX-Datei herunterladen
Laden Sie Website Color Palette-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kegbegkdllkghhaibpbgoeakihgjbmka |
| Offizielle URL | https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka |
| Beschreibung | The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl… |
| Dateigröße | 48.12 KB |
| Installationsanzahl | 731 |
| Aktuelle Version | 0.1.0 |
| Letztes Update | 2020-12-14 |
| Veröffentlichungsdatum | 2020-12-13 |
| Bewertung | 4.33/5 Insgesamt 3 Bewertungen |
| Entwickler | Forwards |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://websitecolorpalette.com |
| Hilfeseite URL | https://websitecolorpalette.com/contact |
| URL der Datenschutzrichtlinien-Seite | http://websitecolorpalette.com/privacy-policy |
| Unterstützte Sprachen | 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"
}
} | |