Gmail Analytics

See sender stats in gmail

Gmail Analytics란 무엇입니까?

Gmail Analytics은(는) ubershmekel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See sender stats in gmail"입니다.

확장 프로그램 스크린샷

screenshot

Gmail Analytics 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The idea is a Chrome extension that would show you stats about your gmail inbox.

Right now you can see who is sending you the most email, and click to filter them. The most frequent sender is shown at the top of your inbox, to the right of the search bar. Note that this is only taking into account the current page, not the complete inbox. If this extension gets more popular, I might find time to build more features into it.

If you'd like to see the code, or file feature requests - please do so at https://github.com/ubershmekel/gmail-analytics                    

확장 프로그램 기본 정보

이름 Gmail Analytics Gmail Analytics
ID gjmmjmdhmddfmnddddkhlcnbjkjkdlal
공식 URL https://chromewebstore.google.com/detail/gmail-analytics/gjmmjmdhmddfmnddddkhlcnbjkjkdlal
설명 See sender stats in gmail
파일 크기 256 KB
설치 횟수 891
현재 버전 0.1.0
최근 업데이트 2023-08-21
출시 날짜 2022-12-11
평점 4.00/5 총 1 개의 평점
개발자 ubershmekel
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ubershmekel/gmail-analytics
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gmail Analytics",
    "version": "0.1.0",
    "description": "See sender stats in gmail",
    "short_name": "gmailanalytics",
    "author": "Yuval Greenfield ",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "js\/extensionInjector.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/gmailJsLoader.js",
                "js\/extension.js",
                "js\/gmailJsLoader.js.map",
                "js\/extension.js.map"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ]
}