Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
What is Website Color Palette?
Website Color Palette is a Chrome extension developed by Forwards, and its main feature is "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".
Extension Screenshots
Download Website Color Palette Extension CRX File
Download Website Color Palette extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Website Color Palette |
ID | kegbegkdllkghhaibpbgoeakihgjbmka |
Official URL | 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… |
File Size | 48.12 KB |
Installation Count | 731 |
Current Version | 0.1.0 |
Last Updated | 2020-12-14 |
Publish Date | 2020-12-13 |
Rating | 4.33/5 Total 3 Ratings |
Developer | Forwards |
[email protected] | |
Payment Type | free |
Extension Website | https://websitecolorpalette.com |
Help Page URL | https://websitecolorpalette.com/contact |
Privacy Policy Page URL | http://websitecolorpalette.com/privacy-policy |
Supported Languages | 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" } } |