Gmail Color Favicon
Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.
Co to jest Gmail Color Favicon?
Gmail Color Favicon to rozszerzenie Chrome opracowane przez Manu Cornet, a jego główną funkcją jest „Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Gmail Color Favicon
Pobierz pliki rozszerzeń Gmail Color Favicon 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
*** Please reload your Gmail tabs after installing this extension. *** *** Known issue: the color you've chosen doesn't stick when you reload your Gmail. That's next on the roadmap. *** Feedback and contributions welcome!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ibkehhmaemkhpniaekaggfcbhfhaiiho |
Oficjalny URL | https://chrome.google.com/webstore/detail/gmail-color-favicon/ibkehhmaemkhpniaekaggfcbhfhaiiho |
Opis | Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts. |
Rozmiar pliku | 652 KB |
Liczba instalacji | 422 |
Aktualna Wersja | 0.15 |
Ostatnia Aktualizacja | 2016-01-06 |
Data Publikacji | 2016-01-06 |
Ocena | 4.00/5 Łącznie 10 Oceny |
Deweloper | Manu Cornet |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/lmanul/gmailcolorfavicon |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Color Favicon", "version": "0.15", "description": "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.", "browser_action": { "default_title": "Pick a color", "default_icon": "icon_19.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content.js" ] } ], "icons": { "19": "icon_19.png", "32": "icon_32.png", "48": "icon_48.png", "72": "icon_72.png", "128": "icon_128.png", "250": "icon_250.png" }, "permissions": [ "https:\/\/mail.google.com\/*", "tabs" ] } |