Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Vad är Website Color Palette?
Website Color Palette är en Chrome-tillägg utvecklad av Forwards, och dess huvudfunktion är "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".
Tilläggsskärmbilder
Ladda ner Website Color Palette-förlängningens CRX-fil
Ladda ner Website Color Palette-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Website Color Palette |
ID | kegbegkdllkghhaibpbgoeakihgjbmka |
Officiell webbadress | https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka |
Beskrivning | The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl… |
Filstorlek | 48.12 KB |
Antal Installationer | 731 |
Aktuell Version | 0.1.0 |
Senast Uppdaterad | 2020-12-14 |
Publiceringsdatum | 2020-12-13 |
Betyg | 4.33/5 Totalt 3 Betyg |
Utvecklare | Forwards |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://websitecolorpalette.com |
Hjälpsida URL | https://websitecolorpalette.com/contact |
URL till Sekretesspolicy Sidan | http://websitecolorpalette.com/privacy-policy |
Stödda Språk | 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" } } |