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 là gì?
Notion Activity Tracker là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Notion Activity Tracker
Tải xuống các tệp mở rộng Notion Activity Tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Notion Activity Tracker |
ID | mpbiimfghimlpbikpgbolbfilnamhehe |
URL Chính Thức | https://chromewebstore.google.com/detail/notion-activity-tracker/mpbiimfghimlpbikpgbolbfilnamhehe |
Mô tả | This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page. |
Kích Thước Tệp | 898 KB |
Số Lần Cài Đặt | 36 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2022-04-26 |
Ngày Phát Hành | 2022-04-25 |
Nhà Phát Triển | Unknown |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |