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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
        ]
    }
}