Color Search
Adds a Google search card for when a color is searched.
Co to jest Color Search?
Color Search to rozszerzenie Chrome opracowane przez Ian Hoegen, a jego główną funkcją jest „Adds a Google search card for when a color is searched.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Color Search
Pobierz pliki rozszerzeń Color Search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension checks the Google search bar, and will add a color card to the top of the search result if the query is a color. This is great for if you need to find the associated color to a RGB color code, or a Hex code.
Donations are accepted at https://www.paypal.me/ihoegen/5
Github: https://github.com/ihoegen/ColorSearch Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | eogeejfgkddjjibpecmcgdohpknkjabo |
| Oficjalny URL | https://chromewebstore.google.com/detail/color-search/eogeejfgkddjjibpecmcgdohpknkjabo |
| Opis | Adds a Google search card for when a color is searched. |
| Rozmiar pliku | 192 KB |
| Liczba instalacji | 503 |
| Aktualna Wersja | 1.0.2 |
| Ostatnia Aktualizacja | 2016-04-09 |
| Data Publikacji | 2016-04-09 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | Ian Hoegen |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/ihoegen/ColorSearch |
| Adres URL Strony Pomocy | https://github.com/ihoegen/ColorSearch/issues |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Color Search",
"description": "Adds a Google search card for when a color is searched. ",
"version": "1.0.2",
"icons": {
"128": "icon.png",
"48": "icon.png",
"256": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/*"
],
"js": [
"main.min.js"
]
}
]
} | |