Notion Activity Tracker

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

Notion Activity Trackerとは何ですか?

Notion Activity TrackerはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.」です。

拡張機能のスクリーンショット

screenshot

Notion Activity Tracker拡張機能のCRXファイルをダウンロード

Notion Activity Tracker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Notion Activity Tracker Notion Activity Tracker
ID mpbiimfghimlpbikpgbolbfilnamhehe
公式URL https://chromewebstore.google.com/detail/notion-activity-tracker/mpbiimfghimlpbikpgbolbfilnamhehe
説明 This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.
ファイルサイズ 898 KB
インストール数 36
現在のバージョン 1.0
最終更新日 2022-04-26
公開日 2022-04-25
開発者 Unknown
Eメール [email protected]
支払い方法 free
対応言語 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"
            ]
        }
    ]
}