Notion Activity Tracker
This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.
Cos'è Notion Activity Tracker?
Notion Activity Tracker è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Notion Activity Tracker
Scarica i file di estensione Notion Activity Tracker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Notion Activity Tracker |
ID | mpbiimfghimlpbikpgbolbfilnamhehe |
URL Ufficiale | https://chromewebstore.google.com/detail/notion-activity-tracker/mpbiimfghimlpbikpgbolbfilnamhehe |
Descrizione | This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page. |
Dimensione del File | 898 KB |
Conteggio Installazioni | 36 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-04-26 |
Data di Pubblicazione | 2022-04-25 |
Sviluppatore | Unknown |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |