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.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Notion Activity Tracker

قم بتنزيل ملفات الامتداد Notion Activity Tracker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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"
            ]
        }
    ]
}