Reverse Inbox

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

Wat is Reverse Inbox?

Reverse Inbox is een Chrome-extensie ontwikkeld door https://reverseinbox.com, en de belangrijkste functie is "This extension helps you get through your oldest emails first while new ones are still coming in visible.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Reverse Inbox

Download Reverse Inbox-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Reverse Inbox Reverse Inbox
ID hpcchgjlaccmgmehofdkapefhkjadeha
Officiële URL https://chromewebstore.google.com/detail/reverse-inbox/hpcchgjlaccmgmehofdkapefhkjadeha
Beschrijving This extension helps you get through your oldest emails first while new ones are still coming in visible.
Bestandsgrootte 904 KB
Aantal Installaties 36
Huidige Versie 1.3
Laatst Bijgewerkt 2020-07-14
Publicatiedatum 2020-07-14
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://reverseinbox.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://www.reverseinbox.com
Help Pagina-URL http://www.reverseinbox.com/
URL van de Privacybeleid Pagina http://reverseinbox.com/privacy-policy
Ondersteunde Talen 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
}