Instant Color Picker
Quickly select colors from website or colorpicker board anytime.
Apa itu Instant Color Picker?
Instant Color Picker adalah ekstensi Chrome yang dikembangkan oleh https://smalldatatools.com, dan fitur utamanya adalah "Quickly select colors from website or colorpicker board anytime.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Instant Color Picker
Unduh file ekstensi Instant Color Picker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Instant Color Picker |
ID | pokogggedpiedkakbmlinhcjifihhkec |
URL Resmi | https://chromewebstore.google.com/detail/instant-color-picker/pokogggedpiedkakbmlinhcjifihhkec |
Deskripsi | Quickly select colors from website or colorpicker board anytime. |
Ukuran File | 84.72 KB |
Jumlah Instalasi | 275 |
Versi Saat Ini | 0.1.4 |
Terakhir Diperbarui | 2024-01-19 |
Tanggal Publikasi | 2022-09-21 |
Pengembang | https://smalldatatools.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.smalldatatools.com |
URL Halaman Bantuan | https://www.smalldatatools.com/contact-us.php |
URL Halaman Kebijakan Privasi | https://www.smalldatatools.com/privacy-policy.php |
Bahasa yang Didukung | 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" } } } } |