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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}