Reverse Inbox
This extension helps you get through your oldest emails first while new ones are still coming in visible.
Cos'è Reverse Inbox?
Reverse Inbox è un'estensione di Chrome sviluppata da https://reverseinbox.com, e la sua funzione principale è "This extension helps you get through your oldest emails first while new ones are still coming in visible.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reverse Inbox
Scarica i file di estensione Reverse Inbox in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Reverse Inbox |
ID | hpcchgjlaccmgmehofdkapefhkjadeha |
URL Ufficiale | https://chromewebstore.google.com/detail/reverse-inbox/hpcchgjlaccmgmehofdkapefhkjadeha |
Descrizione | This extension helps you get through your oldest emails first while new ones are still coming in visible. |
Dimensione del File | 904 KB |
Conteggio Installazioni | 36 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2020-07-14 |
Data di Pubblicazione | 2020-07-14 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://reverseinbox.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.reverseinbox.com |
URL della Pagina di Aiuto | http://www.reverseinbox.com/ |
URL della Pagina della Politica sulla Privacy | http://reverseinbox.com/privacy-policy |
Lingue Supportate | 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 } |