Easy Color Picker
Grab colors from webpages anytime, instant color picker and personal color history.
Τι είναι το Easy Color Picker;
Το Easy Color Picker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://smalldatatools.com, και η κύρια λειτουργία του είναι "Grab colors from webpages anytime, instant color picker and personal color history.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Easy Color Picker
Λήψη αρχείων επέκτασης Easy Color Picker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Easy Color Picker is a very nice tool for developers and designers to grab colors from web pages or select from the color-picker board. You can get the exact HEX/RGB/HSB value and keep the history of picked color. Enjoy the ease of the colorpicker tool! Additionally, we've added some of our latest tools at the bottom for your extra convenience. CHANGELOG ========== Version 0.1.6 - 0.2.1 - Clean JS files and links - Add & update the list of new tools Version 0.1.2 - 0.1.5 - Grab colors from web pages - Upgrade to extension V3 standard - Add google analytics - Add related new tools Version 0.1.1 - 2021-08-18 - Instant color picker - Get HEX/RGB/HSB values - History of picked color
Βασικές Πληροφορίες Επέκτασης
Όνομα | Easy Color Picker |
ID | bgahcehknhgmjoggmkibghafppcfoaci |
Επίσημο URL | https://chromewebstore.google.com/detail/easy-color-picker/bgahcehknhgmjoggmkibghafppcfoaci |
Περιγραφή | Grab colors from webpages anytime, instant color picker and personal color history. |
Μέγεθος Αρχείου | 110 KB |
Αριθμός Εγκαταστάσεων | 10,000 |
Τρέχουσα Έκδοση | 0.2.1 |
Τελευταία Ενημέρωση | 2024-03-03 |
Ημερομηνία Δημοσίευσης | 2020-08-24 |
Αξιολόγηση | 4.80/5 Συνολικά 10 Αξιολογήσεις |
Προγραμματιστής | https://smalldatatools.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.smalldatatools.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.smalldatatools.com/contact-us.php |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.smalldatatools.com/privacy-policy.php |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Easy Color Picker", "description": "Grab colors from webpages anytime, instant color picker and personal color history.", "version": "0.2.1", "action": { "default_icon": "images\/logo.png", "default_popup": "index.html" }, "icons": { "16": "images\/logo.png", "48": "images\/logo.png", "128": "images\/logo.png" }, "permissions": [ "activeTab", "storage", "scripting" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "background": { "service_worker": "\/js\/background.js" }, "commands": { "activate": { "description": "Activate picking color from web page", "suggested_key": { "default": "Alt+P" } } } } |