Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Τι είναι το Website Color Palette;
Το Website Color Palette είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Forwards, και η κύρια λειτουργία του είναι "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Website Color Palette
Λήψη αρχείων επέκτασης Website Color Palette σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Website Color Palette |
ID | kegbegkdllkghhaibpbgoeakihgjbmka |
Επίσημο URL | https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka |
Περιγραφή | The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl… |
Μέγεθος Αρχείου | 48.12 KB |
Αριθμός Εγκαταστάσεων | 731 |
Τρέχουσα Έκδοση | 0.1.0 |
Τελευταία Ενημέρωση | 2020-12-14 |
Ημερομηνία Δημοσίευσης | 2020-12-13 |
Αξιολόγηση | 4.33/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Forwards |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://websitecolorpalette.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://websitecolorpalette.com/contact |
URL της Σελίδας Πολιτικής Απορρήτου | http://websitecolorpalette.com/privacy-policy |
Υποστηριζόμενες Γλώσσες | 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" } } |