Instant Color Picker
Quickly select colors from website or colorpicker board anytime.
Qu'est-ce que Instant Color Picker ?
Instant Color Picker est une extension Chrome développée par https://smalldatatools.com, et sa fonction principale est "Quickly select colors from website or colorpicker board anytime.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Instant Color Picker
Téléchargez les fichiers d'extension Instant Color Picker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Instant Color Picker |
ID | pokogggedpiedkakbmlinhcjifihhkec |
URL Officiel | https://chromewebstore.google.com/detail/instant-color-picker/pokogggedpiedkakbmlinhcjifihhkec |
Description | Quickly select colors from website or colorpicker board anytime. |
Taille du Fichier | 84.72 KB |
Nombre d'Installations | 275 |
Version Actuelle | 0.1.4 |
Dernière Mise à Jour | 2024-01-19 |
Date de Publication | 2022-09-21 |
Développeur | https://smalldatatools.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.smalldatatools.com |
URL de la Page d'Aide | https://www.smalldatatools.com/contact-us.php |
URL de la Page de Politique de Confidentialité | https://www.smalldatatools.com/privacy-policy.php |
Langues Prises en Charge | 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" } } } } |