Notion Activity Tracker

This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.

O que é Notion Activity Tracker?

Notion Activity Tracker é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Notion Activity Tracker

Baixe arquivos de extensão Notion Activity Tracker 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

                        This extension tracks your Notion activity and displays beautiful charts about it. It makes working in Notion even more satisfying, because you can review on what page you have spent the most time. 

It also shows you statistics about "Recent 7 days" for example, where it shows your activity grouped by the day.                    

Informações Básicas da Extensão

Nome Notion Activity Tracker Notion Activity Tracker
ID mpbiimfghimlpbikpgbolbfilnamhehe
URL Oficial https://chromewebstore.google.com/detail/notion-activity-tracker/mpbiimfghimlpbikpgbolbfilnamhehe
Descrição This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.
Tamanho do Arquivo 898 KB
Contagem de Instalações 36
Versão Atual 1.0
Última Atualização 2022-04-26
Data de Publicação 2022-04-25
Desenvolvedor Unknown
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Activity Tracker",
    "description": "This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "unlimitedStorage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "icons": {
        "128": "\/assets\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/options.html"
            ],
            "js": [
                "sources\/echarts.js",
                "sources\/jquery-3.6.0.min.js",
                "sources\/bootstrap.bundle.js"
            ]
        }
    ]
}