Google Chat Themes
Change google chat theme to dark mode, slack mode or make your own
Co to jest Google Chat Themes?
Google Chat Themes to rozszerzenie Chrome opracowane przez upman16, a jego główną funkcją jest „Change google chat theme to dark mode, slack mode or make your own”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Chat Themes
Pobierz pliki rozszerzeń Google Chat Themes 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
Add dark mode, slack mode and customize fonts on google chat. Also completely customize and create your own theme instantly. Help keep the extension up and maintained. Buy me a coffee: https://www.paypal.com/donate?hosted_button_id=BL4NDDVH8AGUY
Podstawowe informacje o rozszerzeniu
Nazwa | Google Chat Themes |
ID | olnlihilabjhneiedkofjdenhboogmeg |
Oficjalny URL | https://chromewebstore.google.com/detail/google-chat-themes/olnlihilabjhneiedkofjdenhboogmeg |
Opis | Change google chat theme to dark mode, slack mode or make your own |
Rozmiar pliku | 280 KB |
Liczba instalacji | 9,822 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2021-05-31 |
Data Publikacji | 2020-08-02 |
Ocena | 2.62/5 Łącznie 63 Oceny |
Deweloper | upman16 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/upman/gchat-themes |
Adres URL Strony Pomocy | https://github.com/upman/gchat-themes/issues |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Chat Themes", "description": "Change google chat theme to dark mode, slack mode or make your own", "version": "0.0.2", "content_scripts": [ { "matches": [ "https:\/\/chat.google.com\/*", "https:\/\/mail.google.com\/chat\/*" ], "all_frames": true, "js": [ ".\/src\/content.js" ], "run_at": "document_end" } ], "page_action": { "default_icon": { "16": "images\/heart.png", "24": "images\/heart.png", "32": "images\/heart.png" }, "default_title": "Google Chat Theme Customizer", "default_popup": "src\/popup\/popup.html" }, "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "storage" ] } |