Gmail Analytics

See sender stats in gmail

Gmail Analytics क्या है?

Gmail Analytics ubershmekel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "See sender stats in gmail"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gmail Analytics एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*"
    ]
}