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.”。
扩展截图
下载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 |
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 |
电子邮箱 | [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" ] } ] } |