Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Hvad er Website Color Palette?
Website Color Palette er en Chrome-udvidelse udviklet af Forwards, og dens hovedfunktion er "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".
Udvidelsesskærmbilleder
Download Website Color Palette-udvidelses-CRX-fil
Download Website Color Palette-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | kegbegkdllkghhaibpbgoeakihgjbmka |
| Officiel URL | https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka |
| Beskrivelse | The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl… |
| Filstørrelse | 48.12 KB |
| Antal Installationer | 731 |
| Nuværende Version | 0.1.0 |
| Senest Opdateret | 2020-12-14 |
| Udgivelsesdato | 2020-12-13 |
| Bedømmelse | 4.33/5 Samlet 3 Bedømmelser |
| Udvikler | Forwards |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://websitecolorpalette.com |
| Hjælpeside-URL | https://websitecolorpalette.com/contact |
| URL til Fortrolighedspolitik Side | http://websitecolorpalette.com/privacy-policy |
| Understøttede Sprog | 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"
}
} | |