Lemicons

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

什么是Lemicons?

Lemicons是由Pearl Lemon开发的Chrome扩展程序,该扩展的主要功能是“Quickly identify the sender of email messages in Gmail without opening the message.”。

扩展截图

screenshot

下载Lemicons扩展crx文件

下载Lemicons扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Lemicons Lemicons
ID jicobgeehljnbhemlcmiihcfnenepaeb
官方URL https://chromewebstore.google.com/detail/lemicons/jicobgeehljnbhemlcmiihcfnenepaeb
简介 Quickly identify the sender of email messages in Gmail without opening the message.
文件大小 1.28 MB
安装次数 23
当前版本 2.0.3
更新时间 2022-10-20
上架时间 2022-08-22
评分 4.93/5 共15次评分
开发者 Pearl Lemon
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://pearllemon.com/privacy-policy
支持的语言 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\/*"
        ]
    }
}