ColorMixture
Show grey, red, green, blue, yellow, magenta, cyan scales of an image
Vad är ColorMixture?
ColorMixture är en Chrome-tillägg utvecklad av https://javafactory.altervista.org, och dess huvudfunktion är "Show grey, red, green, blue, yellow, magenta, cyan scales of an image".
Tilläggsskärmbilder
Ladda ner ColorMixture-förlängningens CRX-fil
Ladda ner ColorMixture-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
If you display a single image .jpg, .gif, .png in a tab by itself (rather than on a normal webpage), this extension will produce multiple colour-tinted versions of the image
Then clicking on a generated image ColorMixture opens a new page where you can save the clicked image in .png format
Color scales available:
- Grey
- Red
- Green
- Blue
- Yellow
- Magenta
- Cyan
It doesn't work in chrome:// pages and in chrome extensions gallery
Please rate this extension if you like it Grundläggande Information om Tillägg
| Namn | |
| ID | ioidipnbhgcjiaademjhblfoljjmonpa |
| Officiell webbadress | https://chromewebstore.google.com/detail/colormixture/ioidipnbhgcjiaademjhblfoljjmonpa |
| Beskrivning | Show grey, red, green, blue, yellow, magenta, cyan scales of an image |
| Filstorlek | 40.33 KB |
| Antal Installationer | 53 |
| Aktuell Version | 0.5.2 |
| Senast Uppdaterad | 2012-07-14 |
| Publiceringsdatum | 2012-07-14 |
| Betyg | 3.00/5 Totalt 7 Betyg |
| Utvecklare | https://javafactory.altervista.org |
| Betalningssätt | free |
| Tilläggswebbplats | http://javafactory.altervista.org/chrome.html |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ColorMixture",
"version": "0.5.2",
"description": "Show grey, red, green, blue, yellow, magenta, cyan scales of an image",
"manifest_version": 2,
"icons": {
"48": "color48.png",
"128": "color128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*.jpg",
"http:\/\/*\/*.gif",
"http:\/\/*\/*.png",
"https:\/\/*\/*.jpg",
"https:\/\/*\/*.gif",
"https:\/\/*\/*.png"
],
"js": [
"edit.js"
]
}
]
} | |