Reverse Inbox

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

Hvad er Reverse Inbox?

Reverse Inbox er en Chrome-udvidelse udviklet af https://reverseinbox.com, og dens hovedfunktion er "This extension helps you get through your oldest emails first while new ones are still coming in visible.".

Udvidelsesskærmbilleder

screenshot

Download Reverse Inbox-udvidelses-CRX-fil

Download Reverse Inbox-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Reverse Inbox Reverse Inbox
ID hpcchgjlaccmgmehofdkapefhkjadeha
Officiel URL https://chromewebstore.google.com/detail/reverse-inbox/hpcchgjlaccmgmehofdkapefhkjadeha
Beskrivelse This extension helps you get through your oldest emails first while new ones are still coming in visible.
Filstørrelse 904 KB
Antal Installationer 36
Nuværende Version 1.3
Senest Opdateret 2020-07-14
Udgivelsesdato 2020-07-14
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler https://reverseinbox.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://www.reverseinbox.com
Hjælpeside-URL http://www.reverseinbox.com/
URL til Fortrolighedspolitik Side http://reverseinbox.com/privacy-policy
Understøttede Sprog 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
}