Reverse Inbox

This extension helps you get through your oldest emails first while new ones are still coming in visible.

¿Qué es Reverse Inbox?

Reverse Inbox es una extensión de Chrome desarrollada por https://reverseinbox.com, y su función principal es "This extension helps you get through your oldest emails first while new ones are still coming in visible.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Reverse Inbox

Descarga archivos de extensión Reverse Inbox en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Reverse Inbox Reverse Inbox
ID hpcchgjlaccmgmehofdkapefhkjadeha
URL Oficial https://chromewebstore.google.com/detail/reverse-inbox/hpcchgjlaccmgmehofdkapefhkjadeha
Descripción This extension helps you get through your oldest emails first while new ones are still coming in visible.
Tamaño del Archivo 904 KB
Cantidad de Instalaciones 36
Versión Actual 1.3
Última Actualización 2020-07-14
Fecha de Publicación 2020-07-14
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://reverseinbox.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://www.reverseinbox.com
URL de la Página de Ayuda http://www.reverseinbox.com/
URL de la Página de Política de Privacidad http://reverseinbox.com/privacy-policy
Idiomas Soportados 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
}