Gmail Analytics

See sender stats in gmail

Qu'est-ce que Gmail Analytics ?

Gmail Analytics est une extension Chrome développée par ubershmekel, et sa fonction principale est "See sender stats in gmail".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Gmail Analytics

Téléchargez les fichiers d'extension Gmail Analytics au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Gmail Analytics Gmail Analytics
ID gjmmjmdhmddfmnddddkhlcnbjkjkdlal
URL Officiel https://chromewebstore.google.com/detail/gmail-analytics/gjmmjmdhmddfmnddddkhlcnbjkjkdlal
Description See sender stats in gmail
Taille du Fichier 256 KB
Nombre d'Installations 891
Version Actuelle 0.1.0
Dernière Mise à Jour 2023-08-21
Date de Publication 2022-12-11
Évaluation 4.00/5 Total 1 Évaluations
Développeur ubershmekel
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ubershmekel/gmail-analytics
Langues Prises en Charge 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:\/\/*\/*"
    ]
}