Page Stat

Display time usage statistics for accessed pages

什么是Page Stat?

Page Stat是由pvpscript开发的Chrome扩展程序,该扩展的主要功能是“Display time usage statistics for accessed pages”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Page Stat扩展crx文件

下载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"
    }
}