Notion Activity Tracker

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

Was ist Notion Activity Tracker?

Notion Activity Tracker ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.".

Erweiterungsscreenshots

screenshot

Notion Activity Tracker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notion Activity Tracker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Notion Activity Tracker Notion Activity Tracker
ID mpbiimfghimlpbikpgbolbfilnamhehe
Offizielle URL https://chromewebstore.google.com/detail/notion-activity-tracker/mpbiimfghimlpbikpgbolbfilnamhehe
Beschreibung This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.
Dateigröße 898 KB
Installationsanzahl 36
Aktuelle Version 1.0
Letztes Update 2022-04-26
Veröffentlichungsdatum 2022-04-25
Entwickler Unknown
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}