Lemicons

Quickly identify the sender of email messages in Gmail without opening the message.

Hvad er Lemicons?

Lemicons er en Chrome-udvidelse udviklet af Pearl Lemon, og dens hovedfunktion er "Quickly identify the sender of email messages in Gmail without opening the message.".

Udvidelsesskærmbilleder

screenshot

Download Lemicons-udvidelses-CRX-fil

Download Lemicons-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

                        Quickly identify the sender of email messages in Gmail without opening the message.                    

Grundlæggende oplysninger om udvidelsen

Navn Lemicons Lemicons
ID jicobgeehljnbhemlcmiihcfnenepaeb
Officiel URL https://chromewebstore.google.com/detail/lemicons/jicobgeehljnbhemlcmiihcfnenepaeb
Beskrivelse Quickly identify the sender of email messages in Gmail without opening the message.
Filstørrelse 1.28 MB
Antal Installationer 23
Nuværende Version 2.0.3
Senest Opdateret 2022-10-20
Udgivelsesdato 2022-08-22
Bedømmelse 4.93/5 Samlet 15 Bedømmelser
Udvikler Pearl Lemon
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://pearllemon.com/privacy-policy
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Quickly identify the sender of email messages in Gmail without opening the message.",
    "version": "2.0.3",
    "manifest_version": 3,
    "name": "Lemicons",
    "options_page": "options.html",
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon32.png"
    },
    "icons": {
        "32": "icon32.png",
        "64": "icon64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "identity"
    ],
    "host_permissions": [
        "https:\/\/mail.google.com\/"
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "icon64.png",
                "icon32.png",
                "pageWorld.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        },
        {
            "resources": [
                "payment-success.html",
                "paymentSuccess.js",
                "payment-canceled.html",
                "paymentCanceled.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "oauth2": {
        "client_id": "812811069389-58jlmi1diqff7dvkep47mlcs17the1fq.apps.googleusercontent.com",
        "scopes": [
            "profile",
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.gmailfiend.com\/*"
        ]
    }
}