Reverse Inbox

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

Vad är Reverse Inbox?

Reverse Inbox är en Chrome-tillägg utvecklad av https://reverseinbox.com, och dess huvudfunktion är "This extension helps you get through your oldest emails first while new ones are still coming in visible.".

Tilläggsskärmbilder

screenshot

Ladda ner Reverse Inbox-förlängningens CRX-fil

Ladda ner Reverse Inbox-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Reverse Inbox Reverse Inbox
ID hpcchgjlaccmgmehofdkapefhkjadeha
Officiell webbadress https://chromewebstore.google.com/detail/reverse-inbox/hpcchgjlaccmgmehofdkapefhkjadeha
Beskrivning This extension helps you get through your oldest emails first while new ones are still coming in visible.
Filstorlek 904 KB
Antal Installationer 36
Aktuell Version 1.3
Senast Uppdaterad 2020-07-14
Publiceringsdatum 2020-07-14
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://reverseinbox.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://www.reverseinbox.com
Hjälpsida URL http://www.reverseinbox.com/
URL till Sekretesspolicy Sidan http://reverseinbox.com/privacy-policy
Stödda Språk 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
}