Lemicons

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

Cos'è Lemicons?

Lemicons è un'estensione di Chrome sviluppata da Pearl Lemon, e la sua funzione principale è "Quickly identify the sender of email messages in Gmail without opening the message.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Lemicons

Scarica i file di estensione Lemicons in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Lemicons Lemicons
ID jicobgeehljnbhemlcmiihcfnenepaeb
URL Ufficiale https://chromewebstore.google.com/detail/lemicons/jicobgeehljnbhemlcmiihcfnenepaeb
Descrizione Quickly identify the sender of email messages in Gmail without opening the message.
Dimensione del File 1.28 MB
Conteggio Installazioni 23
Versione Corrente 2.0.3
Ultimo Aggiornamento 2022-10-20
Data di Pubblicazione 2022-08-22
Valutazione 4.93/5 Totale 15 Valutazioni
Sviluppatore Pearl Lemon
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://pearllemon.com/privacy-policy
Lingue Supportate 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\/*"
        ]
    }
}