Instant Color Picker
Quickly select colors from website or colorpicker board anytime.
What is Instant Color Picker?
Instant Color Picker is a Chrome extension developed by https://smalldatatools.com, and its main feature is "Quickly select colors from website or colorpicker board anytime.".
Extension Screenshots
Download Instant Color Picker Extension CRX File
Download Instant Color Picker 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
Instant Color Picker allows you to grab the color from webpage and copy it in any format. This extension has a simple and user-friendly interface. It is very simple to use, just try it! The main features are: ⭐Pick a color from current page ⭐Pick a color from colorpicker board ⭐Support multiple formats: HEX, RGB, HSV ⭐Keep last-picked color in record for later use CHANGELOG ========== Version 0.1.3 - 0.1.4 - Add google analytics - Update tab permission Version 0.1.1 - 0.1.2 - Fix occasional picker failures Version 0.1.0 - 2022-10-10 - Grab colors from web pages - Get HEX/RGB/HSB values - History of picked color
Extension Basic Information
Name | Instant Color Picker |
ID | pokogggedpiedkakbmlinhcjifihhkec |
Official URL | https://chromewebstore.google.com/detail/instant-color-picker/pokogggedpiedkakbmlinhcjifihhkec |
Description | Quickly select colors from website or colorpicker board anytime. |
File Size | 84.72 KB |
Installation Count | 275 |
Current Version | 0.1.4 |
Last Updated | 2024-01-19 |
Publish Date | 2022-09-21 |
Developer | https://smalldatatools.com |
[email protected] | |
Payment Type | free |
Extension Website | https://www.smalldatatools.com |
Help Page URL | https://www.smalldatatools.com/contact-us.php |
Privacy Policy Page URL | https://www.smalldatatools.com/privacy-policy.php |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Instant Color Picker", "description": "Quickly select colors from website or colorpicker board anytime.", "version": "0.1.4", "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 color picker from webpage", "suggested_key": { "default": "Alt+P" } } } } |