Google Chat Mark as Read
Adds button to quickly mark all Google Chat Room notifications as read
O que é Google Chat Mark as Read?
Google Chat Mark as Read é uma extensão do Chrome desenvolvida por https://colbywoods.dev, e sua principal característica é "Adds button to quickly mark all Google Chat Room notifications as read".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Chat Mark as Read
Baixe arquivos de extensão Google Chat Mark as Read 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
Google Chat Extension for Mail and Chat App to mark all rooms as read. Click the button and wait while the extension iterates through all rooms with unread messages and clears the notifications for you. Save yourself some time and skip marking read by hand.
Informações Básicas da Extensão
Nome | Google Chat Mark as Read |
ID | mfoklnlmddfdpfmcdniicgacnoklginh |
URL Oficial | https://chromewebstore.google.com/detail/google-chat-mark-as-read/mfoklnlmddfdpfmcdniicgacnoklginh |
Descrição | Adds button to quickly mark all Google Chat Room notifications as read |
Tamanho do Arquivo | 12.43 KB |
Contagem de Instalações | 1,000 |
Versão Atual | 1.0.0 |
Última Atualização | 2023-03-20 |
Data de Publicação | 2021-07-16 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | https://colbywoods.dev |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Chat Mark as Read", "version": "1.0.0", "description": "Adds button to quickly mark all Google Chat Room notifications as read", "content_scripts": [ { "matches": [ "https:\/\/chat.google.com\/*", "https:\/\/mail.google.com\/chat\/*" ], "all_frames": true, "js": [ "content.js" ], "run_at": "document_end" } ] } |