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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Notion Activity Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |