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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
    }
}