Google Counter

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

Co je Google Counter?

Google Counter je rozšíření Chrome vyvinuté Sindre Bøyum, a jeho hlavní funkcí je „Counts how many times a day the browser visits the Google search page“.

Stáhnout soubor CRX rozšíření Google Counter

Stáhněte si soubory rozšíření Google Counter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

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

Základní Informace o Rozšíření

Název Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
Oficiální URL https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
Popis Counts how many times a day the browser visits the Google search page
Velikost souboru 11.33 KB
Počet instalací 266
Aktuální Verze 1.1.1
Poslední Aktualizace 2017-04-27
Datum Vydání 2017-04-27
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Sindre Bøyum
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/boyum/google-counter/
Podporované Jazyky 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"
            ]
        }
    ]
}