Gmail Analytics

See sender stats in gmail

O que é Gmail Analytics?

Gmail Analytics é uma extensão do Chrome desenvolvida por ubershmekel, e sua principal característica é "See sender stats in gmail".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Gmail Analytics

Baixe arquivos de extensão Gmail Analytics no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Gmail Analytics Gmail Analytics
ID gjmmjmdhmddfmnddddkhlcnbjkjkdlal
URL Oficial https://chromewebstore.google.com/detail/gmail-analytics/gjmmjmdhmddfmnddddkhlcnbjkjkdlal
Descrição See sender stats in gmail
Tamanho do Arquivo 256 KB
Contagem de Instalações 891
Versão Atual 0.1.0
Última Atualização 2023-08-21
Data de Publicação 2022-12-11
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor ubershmekel
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ubershmekel/gmail-analytics
Idiomas Suportados 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:\/\/*\/*"
    ]
}