Lemicons

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

Co je Lemicons?

Lemicons je rozšíření Chrome vyvinuté Pearl Lemon, a jeho hlavní funkcí je „Quickly identify the sender of email messages in Gmail without opening the message.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Lemicons

Stáhněte si soubory rozšíření Lemicons ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Lemicons Lemicons
ID jicobgeehljnbhemlcmiihcfnenepaeb
Oficiální URL https://chromewebstore.google.com/detail/lemicons/jicobgeehljnbhemlcmiihcfnenepaeb
Popis Quickly identify the sender of email messages in Gmail without opening the message.
Velikost souboru 1.28 MB
Počet instalací 23
Aktuální Verze 2.0.3
Poslední Aktualizace 2022-10-20
Datum Vydání 2022-08-22
Hodnocení 4.93/5 Celkem 15 Hodnocení
Vývojář Pearl Lemon
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://pearllemon.com/privacy-policy
Podporované Jazyky 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\/*"
        ]
    }
}