Google Counter

Counts how many times a day the browser visits the Google search page

Co to jest Google Counter?

Google Counter to rozszerzenie Chrome opracowane przez Sindre Bøyum, a jego główną funkcją jest „Counts how many times a day the browser visits the Google search page”.

Pobierz plik CRX rozszerzenia Google Counter

Pobierz pliki rozszerzeń Google 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

                        Chrome Extension that counts how many times a day the browser Googles.

Check out the code on GitHub: https://github.com/boyum/google-counter/                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
Oficjalny URL https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
Opis Counts how many times a day the browser visits the Google search page
Rozmiar pliku 11.33 KB
Liczba instalacji 266
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2017-04-27
Data Publikacji 2017-04-27
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Sindre Bøyum
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/boyum/google-counter/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Counter",
    "description": "Counts how many times a day the browser visits the Google search page",
    "version": "1.1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/www.google.*\/*"
            ],
            "js": [
                "counter.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}