Sender Icons for Gmail™

Add a sender icon for all emails in your Gmail inbox.

Sender Icons for Gmail™란 무엇입니까?

Sender Icons for Gmail™은(는) Lynn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a sender icon for all emails in your Gmail inbox."입니다.

확장 프로그램 스크린샷

screenshot

Sender Icons for Gmail™ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Sender Icons for Gmail™ is an extension that lets you easily add icons for individual emails (based on the sender's address) in the Gmail inbox.

Simply add the addon to your browser and open or reload your Gmail inbox. You will see an icon next to the - subject - column for each email. The icon is derived from the email's domain address. Please note that icons are set to be 16 pixels in width and height. To change the icon size to 32 pixels, please visit the extension options page.

Note: to hide icons, please press on the toolbar button once to disable the addon, then reload the Gmail tab.

Important note: Sender Icons for Gmail™ add-on does NOT belong or relate to Google Inc at all. It is an unofficial extension that is developed and maintained independently by its author. Gmail™ is a registered trademark of Google Inc.

If you see any bug(s) or have a feature request, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/sender-icons-for-gmail.html).                    

확장 프로그램 기본 정보

이름 Sender Icons for Gmail™ Sender Icons for Gmail™
ID bncbcpnjglcbgoambglmmfoakffngkjg
공식 URL https://chromewebstore.google.com/detail/sender-icons-for-gmail/bncbcpnjglcbgoambglmmfoakffngkjg
설명 Add a sender icon for all emails in your Gmail inbox.
파일 크기 35.26 KB
설치 횟수 1,053
현재 버전 0.1.5
최근 업데이트 2023-12-04
출시 날짜 2018-06-13
평점 4.83/5 총 6 개의 평점
개발자 Lynn
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://mybrowseraddon.com/sender-icons-for-gmail.html
도움말 페이지 URL https://mybrowseraddon.com/sender-icons-for-gmail.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.5",
    "manifest_version": 3,
    "offline_enabled": true,
    "permissions": [
        "storage"
    ],
    "name": "Sender Icons for Gmail\u2122",
    "description": "Add a sender icon for all emails in your Gmail inbox.",
    "homepage_url": "https:\/\/mybrowseraddon.com\/sender-icons-for-gmail.html",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "action": {
        "default_title": "Sender Icons for Gmail\u2122",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.mail.google.com\/*"
            ],
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}