Page Stat

Display time usage statistics for accessed pages

ما هو Page Stat؟

Page Stat هو إضافة Chrome تم تطويرها بواسطة pvpscript، والميزة الرئيسية لها هي "Display time usage statistics for accessed pages".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Page Stat

قم بتنزيل ملفات الامتداد Page Stat بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Page Stat is a browser extension for chrome and firefox that calculates how
much time is spent on websites in general and provides usage statistics for different time intervals, such as *daily*, *weekly*, *monthly*, *yearly* and also *custom defined*. A list of accessed domains is displayed, sorted by usage time in ascending order. Select a specific domain on this list to plot the usage data for it.                    

معلومات أساسية عن التمديد

الاسم Page Stat Page Stat
ID iifimpgnkpmahfnopiaidbohgepbeggd
عنوان URL الرسمي https://chromewebstore.google.com/detail/page-stat/iifimpgnkpmahfnopiaidbohgepbeggd
الوصف Display time usage statistics for accessed pages
حجم الملف 155 KB
عدد التثبيتات 36
النسخة الحالية 1.0.1
آخر تحديث 2020-10-07
تاريخ النشر 2020-10-01
المطور pvpscript
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/pvpscript/page-stat
عنوان صفحة المساعدة https://github.com/pvpscript/page-stat/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page Stat",
    "version": "1.0.1",
    "description": "Display time usage statistics for accessed pages",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "alarms",
        "https:\/\/www.google.com\/"
    ],
    "options_ui": {
        "page": "view\/options\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background_scripts\/host.js",
            "background_scripts\/page.js",
            "background_scripts\/utils.js",
            "background_scripts\/validator.js",
            "background_scripts\/listeners_runtime.js",
            "background_scripts\/listeners_tabs.js",
            "background_scripts\/core.js",
            "background_scripts\/alarm.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Page usage statistics",
        "default_popup": "popup\/popup.html"
    }
}