Lemicons

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

O que é Lemicons?

Lemicons é uma extensão do Chrome desenvolvida por Pearl Lemon, e sua principal característica é "Quickly identify the sender of email messages in Gmail without opening the message.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Lemicons

Baixe arquivos de extensão Lemicons no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Lemicons Lemicons
ID jicobgeehljnbhemlcmiihcfnenepaeb
URL Oficial https://chromewebstore.google.com/detail/lemicons/jicobgeehljnbhemlcmiihcfnenepaeb
Descrição Quickly identify the sender of email messages in Gmail without opening the message.
Tamanho do Arquivo 1.28 MB
Contagem de Instalações 23
Versão Atual 2.0.3
Última Atualização 2022-10-20
Data de Publicação 2022-08-22
Classificação 4.93/5 Total de 15 Avaliações
Desenvolvedor Pearl Lemon
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://pearllemon.com/privacy-policy
Idiomas Suportados 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\/*"
        ]
    }
}