Reverse Inbox
This extension helps you get through your oldest emails first while new ones are still coming in visible.
O que é Reverse Inbox?
Reverse Inbox é uma extensão do Chrome desenvolvida por https://reverseinbox.com, e sua principal característica é "This extension helps you get through your oldest emails first while new ones are still coming in visible.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Reverse Inbox
Baixe arquivos de extensão Reverse Inbox 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
Reverse your Gmail Priority Inbox and get through the emails you meant to. New emails are added to the bottom of your inbox so you are not distracted to answer those first.
Informações Básicas da Extensão
Nome | Reverse Inbox |
ID | hpcchgjlaccmgmehofdkapefhkjadeha |
URL Oficial | https://chromewebstore.google.com/detail/reverse-inbox/hpcchgjlaccmgmehofdkapefhkjadeha |
Descrição | This extension helps you get through your oldest emails first while new ones are still coming in visible. |
Tamanho do Arquivo | 904 KB |
Contagem de Instalações | 36 |
Versão Atual | 1.3 |
Última Atualização | 2020-07-14 |
Data de Publicação | 2020-07-14 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://reverseinbox.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://www.reverseinbox.com |
URL da Página de Ajuda | http://www.reverseinbox.com/ |
URL da Página de Política de Privacidade | http://reverseinbox.com/privacy-policy |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reverse Inbox", "version": "1.3", "description": "This extension helps you get through your oldest emails first while new ones are still coming in visible.", "browser_action": { "default_popup": "src\/browser_action\/browser_action.html", "default_icon": "icons\/32.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "js\/jquery.min.js", "js\/script.js" ], "css": [ "css\/style.css" ], "matches": [ "*:\/\/mail.google.com\/*" ], "run_at": "document_end" } ], "permissions": [ "*:\/\/mail.google.com\/*" ], "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png", "256": "icons\/256.png" }, "manifest_version": 2 } |