Instant Color Picker
Quickly select colors from website or colorpicker board anytime.
Instant Color Pickerとは何ですか?
Instant Color Pickerはhttps://smalldatatools.comによって開発されたChromeの拡張機能で、その主な機能は「Quickly select colors from website or colorpicker board anytime.」です。
拡張機能のスクリーンショット
Instant Color Picker拡張機能のCRXファイルをダウンロード
Instant Color Picker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| ID | pokogggedpiedkakbmlinhcjifihhkec |
| 公式URL | https://chromewebstore.google.com/detail/instant-color-picker/pokogggedpiedkakbmlinhcjifihhkec |
| 説明 | Quickly select colors from website or colorpicker board anytime. |
| ファイルサイズ | 84.72 KB |
| インストール数 | 275 |
| 現在のバージョン | 0.1.4 |
| 最終更新日 | 2024-01-19 |
| 公開日 | 2022-09-21 |
| 開発者 | https://smalldatatools.com |
| Eメール | [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": "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"
}
}
}
} | |