Google Counter

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

Wat is Google Counter?

Google Counter is een Chrome-extensie ontwikkeld door Sindre Bøyum, en de belangrijkste functie is "Counts how many times a day the browser visits the Google search page".

Download het CRX-bestand van de extensie Google Counter

Download Google Counter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

Basisinformatie over de Extensie

Naam Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
Officiële URL https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
Beschrijving Counts how many times a day the browser visits the Google search page
Bestandsgrootte 11.33 KB
Aantal Installaties 266
Huidige Versie 1.1.1
Laatst Bijgewerkt 2017-04-27
Publicatiedatum 2017-04-27
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Sindre Bøyum
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/boyum/google-counter/
Ondersteunde Talen 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"
            ]
        }
    ]
}