Page View Counter

You can check your page view counts per day.

Co to jest Page View Counter?

Page View Counter to rozszerzenie Chrome opracowane przez suzuki.noritomo, a jego główną funkcją jest „You can check your page view counts per day.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Page View Counter

Pobierz pliki rozszerzeń Page View Counter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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日間の経過をグラフで見ることもできます。                    

Podstawowe informacje o rozszerzeniu

Nazwa Page View Counter Page View Counter
ID pbffhgellplheapoloifdakppmnbmdkd
Oficjalny URL https://chromewebstore.google.com/detail/page-view-counter/pbffhgellplheapoloifdakppmnbmdkd
Opis You can check your page view counts per day.
Rozmiar pliku 72.3 KB
Liczba instalacji 247
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2013-08-20
Data Publikacji 2013-08-20
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper suzuki.noritomo
Typ Płatności free
Obsługiwane Języki 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"
    }
}