Google Counter

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

What is Google Counter?

Google Counter is a Chrome extension developed by Sindre Bøyum, and its main feature is "Counts how many times a day the browser visits the Google search page".

Download Google Counter Extension CRX File

Download Google Counter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

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

Extension Basic Information

Name Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
Official URL https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
Description Counts how many times a day the browser visits the Google search page
File Size 11.33 KB
Installation Count 266
Current Version 1.1.1
Last Updated 2017-04-27
Publish Date 2017-04-27
Rating 5.00/5 Total 1 Ratings
Developer Sindre Bøyum
Email [email protected]
Payment Type free
Extension Website https://github.com/boyum/google-counter/
Supported Languages 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"
            ]
        }
    ]
}