Google Counter

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

Qu'est-ce que Google Counter ?

Google Counter est une extension Chrome développée par Sindre Bøyum, et sa fonction principale est "Counts how many times a day the browser visits the Google search page".

Télécharger le fichier CRX de l'extension Google Counter

Téléchargez les fichiers d'extension Google Counter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

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

Informations de Base sur l'Extension

Nom Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
URL Officiel https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
Description Counts how many times a day the browser visits the Google search page
Taille du Fichier 11.33 KB
Nombre d'Installations 266
Version Actuelle 1.1.1
Dernière Mise à Jour 2017-04-27
Date de Publication 2017-04-27
Évaluation 5.00/5 Total 1 Évaluations
Développeur Sindre Bøyum
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/boyum/google-counter/
Langues Prises en Charge 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"
            ]
        }
    ]
}