Gmail++

Improves the user experience of Gmail

Vad är Gmail++?

Gmail++ är en Chrome-tillägg utvecklad av Michael Pfaff, och dess huvudfunktion är "Improves the user experience of Gmail".

Tilläggsskärmbilder

screenshot

Ladda ner Gmail++-förlängningens CRX-fil

Ladda ner Gmail++-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

                        Improves the user experience of Gmail.

Features:
- Modifies the refresh button (the one above the threads list, not beside the address bar) to also check external POP3 accounts.
- Checks external POP3 accounts on page load.
- Checks external POP3 accounts at a configurable interval.                    

Grundläggande Information om Tillägg

Namn Gmail++ Gmail++
ID jcbfnofllipbepnolhgcdloichjbcena
Officiell webbadress https://chromewebstore.google.com/detail/gmail++/jcbfnofllipbepnolhgcdloichjbcena
Beskrivning Improves the user experience of Gmail
Filstorlek 9.16 KB
Antal Installationer 182
Aktuell Version 1.1.0
Senast Uppdaterad 2022-10-12
Publiceringsdatum 2022-10-09
Utvecklare Michael Pfaff
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gmail++",
    "version": "1.1.0",
    "description": "Improves the user experience of Gmail",
    "icons": {
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/mail.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "lib.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}