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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    }
}