Color Dropper
An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.
Τι είναι το Color Dropper;
Το Color Dropper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://colordropper.xyz, και η κύρια λειτουργία του είναι "An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Color Dropper
Λήψη αρχείων επέκτασης Color Dropper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Press the dropper icon on the menu bar or use keyboard shortcut and then click on any part of your browser screen. Automatically capture (and copy) the hex code to your clipboard. A small tooltip shows what color you currently have selected and, when clicked, will tell you what hex code is successfully copied. Easy to use. Copies color in just one click. Extremely useful for developers and artists. ☆ Default keyboard shortcut to activate is Ctrl+Shift+E (Cmd+Shift+E on Mac) ☆ ☆ Shortcut can be changed by navigating to chrome://extensions/shortcuts ☆ Won't work on new tab page, Chrome settings pages, and the Chrome Web Store. Works on the latest versions of Chrome.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Color Dropper |
ID | cbagleaaaocejmdeichhdkmjebpljckh |
Επίσημο URL | https://chromewebstore.google.com/detail/color-dropper/cbagleaaaocejmdeichhdkmjebpljckh |
Περιγραφή | An easy to use eyedropper tool that automatically copies the Hex Code of the desired color. |
Μέγεθος Αρχείου | 51.03 KB |
Αριθμός Εγκαταστάσεων | 63,639 |
Τρέχουσα Έκδοση | 1.3.4 |
Τελευταία Ενημέρωση | 2021-08-25 |
Ημερομηνία Δημοσίευσης | 2020-06-25 |
Αξιολόγηση | 4.49/5 Συνολικά 35 Αξιολογήσεις |
Προγραμματιστής | https://colordropper.xyz |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://adamgonen.com |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Color Dropper", "version": "1.3.4", "description": "An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.", "homepage_url": "https:\/\/colordropper.xyz", "background": { "page": "background.html", "persistent": true }, "browser_action": { "default_icon": { "48": "assets\/48-color.png", "128": "assets\/128-color.png" } }, "web_accessible_resources": [ "assets\/*" ], "permissions": [ "activeTab" ], "icons": { "48": "assets\/48-color.png", "128": "assets\/128-color.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+E" } } } } |