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
Eメール [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"
    }
}