Google Counter

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

Cos'è Google Counter?

Google Counter è un'estensione di Chrome sviluppata da Sindre Bøyum, e la sua funzione principale è "Counts how many times a day the browser visits the Google search page".

Scarica il file CRX dell'estensione Google Counter

Scarica i file di estensione Google Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

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

Informazioni di Base sull'Estensione

Nome Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
URL Ufficiale https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
Descrizione Counts how many times a day the browser visits the Google search page
Dimensione del File 11.33 KB
Conteggio Installazioni 266
Versione Corrente 1.1.1
Ultimo Aggiornamento 2017-04-27
Data di Pubblicazione 2017-04-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Sindre Bøyum
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/boyum/google-counter/
Lingue Supportate 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"
            ]
        }
    ]
}