Color Eyedropper
Pick colors from web pages, color picker and your personal color history.
Color Eyedropper क्या है?
Color Eyedropper https://smalldatatools.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pick colors from web pages, color picker and your personal color history."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Color Eyedropper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
With our lightweight eyedropper extension, you can quickly select colors from webpages or from advanced color picker. The extension lets you get the exact HEX/RGB/HSV value and keep the history of picked colors. It is very nice for any graphics designers or web developers, or for anyone who just really likes colors. This extension doesn't collect or store any personal information. CHANGELOG ========== Version 0.1.5 - 0.1.6 - Add google analytics - Update tab permission Version 0.1.4 - 2023-08-04 - Update extension title & description Version 0.1.3 - 2022-12-15 - Fix occasional picker failures Version 0.1.0 - 0.1.2 - Grab colors from web pages - Get HEX/RGB/HSB values - History of picked color
एक्सटेंशन की मूल जानकारी
नाम | Color Eyedropper |
ID | hkjmjcmlaoidmlpbmdogcklanooafpne |
आधिकारिक URL | https://chromewebstore.google.com/detail/color-eyedropper/hkjmjcmlaoidmlpbmdogcklanooafpne |
विवरण | Pick colors from web pages, color picker and your personal color history. |
फ़ाइल का आकार | 208 KB |
स्थापना संख्या | 161 |
वर्तमान संस्करण | 0.1.6 |
अंतिम अपडेट | 2024-01-19 |
प्रकाशन तिथि | 2022-06-22 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | 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": "Color Eyedropper", "description": "Pick colors from web pages, color picker and your personal color history.", "version": "0.1.6", "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 eyedropper from web page", "suggested_key": { "default": "Alt+P" } } } } |