Lemicons

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

Vad är Lemicons?

Lemicons är en Chrome-tillägg utvecklad av Pearl Lemon, och dess huvudfunktion är "Quickly identify the sender of email messages in Gmail without opening the message.".

Tilläggsskärmbilder

screenshot

Ladda ner Lemicons-förlängningens CRX-fil

Ladda ner Lemicons-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Lemicons Lemicons
ID jicobgeehljnbhemlcmiihcfnenepaeb
Officiell webbadress https://chromewebstore.google.com/detail/lemicons/jicobgeehljnbhemlcmiihcfnenepaeb
Beskrivning Quickly identify the sender of email messages in Gmail without opening the message.
Filstorlek 1.28 MB
Antal Installationer 23
Aktuell Version 2.0.3
Senast Uppdaterad 2022-10-20
Publiceringsdatum 2022-08-22
Betyg 4.93/5 Totalt 15 Betyg
Utvecklare Pearl Lemon
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://pearllemon.com/privacy-policy
Stödda Språk 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\/*"
        ]
    }
}