Google Chat Themes
Change google chat theme to dark mode, slack mode or make your own
O que é Google Chat Themes?
Google Chat Themes é uma extensão do Chrome desenvolvida por upman16, e sua principal característica é "Change google chat theme to dark mode, slack mode or make your own".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Chat Themes
Baixe arquivos de extensão Google Chat Themes no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Google Chat Themes |
ID | olnlihilabjhneiedkofjdenhboogmeg |
URL Oficial | https://chromewebstore.google.com/detail/google-chat-themes/olnlihilabjhneiedkofjdenhboogmeg |
Descrição | Change google chat theme to dark mode, slack mode or make your own |
Tamanho do Arquivo | 280 KB |
Contagem de Instalações | 9,822 |
Versão Atual | 0.0.2 |
Última Atualização | 2021-05-31 |
Data de Publicação | 2020-08-02 |
Classificação | 2.62/5 Total de 63 Avaliações |
Desenvolvedor | upman16 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/upman/gchat-themes |
URL da Página de Ajuda | https://github.com/upman/gchat-themes/issues |
Idiomas Suportados | 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" ] } |