Gmail Classic Theme
An extension for reverting Gmail to the Classic Theme
O que é Gmail Classic Theme?
Gmail Classic Theme é uma extensão do Chrome desenvolvida por Andrew Powell @shellscape, e sua principal característica é "An extension for reverting Gmail to the Classic Theme".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Gmail Classic Theme
Baixe arquivos de extensão Gmail Classic Theme 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
What Google giveth, Google taketh away. Google has recently forced a UI update upon the users of Gmail. Unfortunately, not everyone thinks it's an improvement. Installing this extension will revert the UI of Gmail to the previous "Classic" theme. The theme is based on the actual CSS from the previous UI and makes no additions or subjective changes. This extension is open source. You can review or contribute to the code for this extension here: https://github.com/shellscape/gmail-classic. Release info and change-log can be found here: https://github.com/shellscape/gmail-classic/releases.
Informações Básicas da Extensão
Nome | |
ID | cokholnilkppcchlfepienmlbafkjplj |
URL Oficial | https://chrome.google.com/webstore/detail/gmail-classic-theme/cokholnilkppcchlfepienmlbafkjplj |
Descrição | An extension for reverting Gmail to the Classic Theme |
Tamanho do Arquivo | 17.38 KB |
Contagem de Instalações | 994 |
Versão Atual | 0.1.1 |
Última Atualização | 2018-11-19 |
Data de Publicação | 2018-11-19 |
Classificação | 4.00/5 Total de 7 Avaliações |
Desenvolvedor | Andrew Powell @shellscape |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/shellscape/gmail-classic |
URL da Página de Ajuda | https://github.com/shellscape/gmail-classic |
Idiomas Suportados | en |
manifest.json | |
{ "name": "Gmail Classic Theme", "short_name": "Gmail Classic Theme", "version": "0.1.1", "description": "An extension for reverting Gmail to the Classic Theme", "homepage_url": "http:\/\/github.com\/shellscape\/gmail-classic", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Andrew Powell (shellscape)", "manifest_version": 2, "browser_action": { "default_icon": { "19": "\/assets\/16.png", "38": "\/assets\/48.png" } }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "gmail.css" ] } ], "icons": { "16": "\/assets\/16.png", "32": "\/assets\/32.png", "48": "\/assets\/48.png", "64": "\/assets\/64.png", "128": "\/assets\/128.png" }, "permissions": [ "activeTab", "*:\/\/mail.google.com\/" ] } |