Page View Counter

You can check your page view counts per day.

Page View Counter란 무엇입니까?

Page View Counter은(는) suzuki.noritomo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "You can check your page view counts per day."입니다.

확장 프로그램 스크린샷

screenshot

Page View Counter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Have you ever thought that how many pages you visit every day?

Page View Counter counts your visit, after you install this application.
And it reset the counts by the day.

In addition, you can check 30 days transition on bar graph.


一日何ページ見てる?が解る「Page View Counter」

「いつもどれくらいページを見てるんだろう?」

そんな事を思った事はありませんか?

Page View Counter を入れておけば常にカウントしてくれます。

日ごとにリセットされ、30日間の経過をグラフで見ることもできます。                    

확장 프로그램 기본 정보

이름 Page View Counter Page View Counter
ID pbffhgellplheapoloifdakppmnbmdkd
공식 URL https://chromewebstore.google.com/detail/page-view-counter/pbffhgellplheapoloifdakppmnbmdkd
설명 You can check your page view counts per day.
파일 크기 72.3 KB
설치 횟수 247
현재 버전 0.3
최근 업데이트 2013-08-20
출시 날짜 2013-08-20
평점 4.00/5 총 1 개의 평점
개발자 suzuki.noritomo
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Page View Counter",
    "version": "0.3",
    "description": "You can check your page view counts per day.",
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "web_accessible_resources": [
        "img\/nums\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Page View Counter",
        "default_icon": "img\/19.png",
        "default_popup": "popup.html"
    }
}