Reverse Inbox

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

Was ist Reverse Inbox?

Reverse Inbox ist eine Chrome-Erweiterung, die von https://reverseinbox.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension helps you get through your oldest emails first while new ones are still coming in visible.".

Erweiterungsscreenshots

screenshot

Reverse Inbox-Erweiterungs-CRX-Datei herunterladen

Laden Sie Reverse Inbox-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Reverse Inbox Reverse Inbox
ID hpcchgjlaccmgmehofdkapefhkjadeha
Offizielle URL https://chromewebstore.google.com/detail/reverse-inbox/hpcchgjlaccmgmehofdkapefhkjadeha
Beschreibung This extension helps you get through your oldest emails first while new ones are still coming in visible.
Dateigröße 904 KB
Installationsanzahl 36
Aktuelle Version 1.3
Letztes Update 2020-07-14
Veröffentlichungsdatum 2020-07-14
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://reverseinbox.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://www.reverseinbox.com
Hilfeseite URL http://www.reverseinbox.com/
URL der Datenschutzrichtlinien-Seite http://reverseinbox.com/privacy-policy
Unterstützte Sprachen 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
}