Lemicons

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

¿Qué es Lemicons?

Lemicons es una extensión de Chrome desarrollada por Pearl Lemon, y su función principal es "Quickly identify the sender of email messages in Gmail without opening the message.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Lemicons

Descarga archivos de extensión Lemicons en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Lemicons Lemicons
ID jicobgeehljnbhemlcmiihcfnenepaeb
URL Oficial https://chromewebstore.google.com/detail/lemicons/jicobgeehljnbhemlcmiihcfnenepaeb
Descripción Quickly identify the sender of email messages in Gmail without opening the message.
Tamaño del Archivo 1.28 MB
Cantidad de Instalaciones 23
Versión Actual 2.0.3
Última Actualización 2022-10-20
Fecha de Publicación 2022-08-22
Calificación 4.93/5 Total de 15 Calificaciones
Desarrollador Pearl Lemon
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://pearllemon.com/privacy-policy
Idiomas Soportados 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\/*"
        ]
    }
}