Instant Color Picker
Quickly select colors from website or colorpicker board anytime.
Was ist Instant Color Picker?
Instant Color Picker ist eine Chrome-Erweiterung, die von https://smalldatatools.com entwickelt wurde, und ihr Hauptmerkmal ist "Quickly select colors from website or colorpicker board anytime.".
Erweiterungsscreenshots
Instant Color Picker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Instant Color Picker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Instant Color Picker |
ID | pokogggedpiedkakbmlinhcjifihhkec |
Offizielle URL | https://chromewebstore.google.com/detail/instant-color-picker/pokogggedpiedkakbmlinhcjifihhkec |
Beschreibung | Quickly select colors from website or colorpicker board anytime. |
Dateigröße | 84.72 KB |
Installationsanzahl | 275 |
Aktuelle Version | 0.1.4 |
Letztes Update | 2024-01-19 |
Veröffentlichungsdatum | 2022-09-21 |
Entwickler | https://smalldatatools.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.smalldatatools.com |
Hilfeseite URL | https://www.smalldatatools.com/contact-us.php |
URL der Datenschutzrichtlinien-Seite | https://www.smalldatatools.com/privacy-policy.php |
Unterstützte Sprachen | 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" } } } } |