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 - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension tracks your Notion activity. It stores all data locally and you can view your stats in the Options Page.".
Снимки экрана расширения
Скачать файл CRX расширения Notion Activity Tracker
Скачайте файлы расширений 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" ] } ] } |