any-color
Pick any pixel color from a web page
Qu'est-ce que any-color ?
any-color est une extension Chrome développée par https://hankchiu.tw, et sa fonction principale est "Pick any pixel color from a web page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension any-color
Téléchargez les fichiers d'extension any-color 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
A chrome extension let you pick up any pixel color from a web page.
- Inspired from chrome devtool's color picker.
- Toggle the color inspector by Alt+Shift+A.
- Turn off the color inspector by ESC.
- Click and copy the color hex.
## Why?
Most of the color picker extensions have these drawbacks:
- Most of them are aimed at picking DOM colors. Can not pick image colors.
- Not efficient when I only want to pick colors.
## How to use
Install the extension and toggle the color inspector by Alt+Shift+A. That's it.
## How it works
Mainly it uses [captureVisibleTab](https://developer.chrome.com/extensions/tabs#method-captureVisibleTab) API to the take the page screenshot. The image data is rasterized and pixel colors are ready to use.
## License
[ Apache2 License ](LICENSE) © [hankchiu.tw](https://hankchiu.tw) Informations de Base sur l'Extension
| Nom | |
| ID | cmehpadapglhhambdiafddpfjdngonba |
| URL Officiel | https://chromewebstore.google.com/detail/any-color/cmehpadapglhhambdiafddpfjdngonba |
| Description | Pick any pixel color from a web page |
| Taille du Fichier | 227 KB |
| Nombre d'Installations | 168 |
| Version Actuelle | 0.3.0 |
| Dernière Mise à Jour | 2020-11-25 |
| Date de Publication | 2020-06-23 |
| Évaluation | 5.00/5 Total 1 Évaluations |
| Développeur | https://hankchiu.tw |
| [email protected] | |
| Type de Paiement | free |
| Site Web de l'Extension | https://any-color.vercel.app |
| Langues Prises en Charge | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "any-color",
"short_name": "AnyColor",
"version": "0.3.0",
"manifest_version": 2,
"description": "Pick any pixel color from a web page",
"homepage_url": "https:\/\/github.com\/hankchiutw\/any-color",
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"background": {
"scripts": [
"main.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Click or press Alt+Shift+A to launch AnyColor",
"name": "Click to launch AnyColor"
},
"permissions": [
"activeTab"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+A",
"mac": "Alt+Shift+A"
},
"description": "Toggle AnyColor"
}
},
"web_accessible_resources": [
"assets\/*"
]
} | |