Google Counter

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

Vad är Google Counter?

Google Counter är en Chrome-tillägg utvecklad av Sindre Bøyum, och dess huvudfunktion är "Counts how many times a day the browser visits the Google search page".

Ladda ner Google Counter-förlängningens CRX-fil

Ladda ner Google Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

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

Grundläggande Information om Tillägg

Namn Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
Officiell webbadress https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
Beskrivning Counts how many times a day the browser visits the Google search page
Filstorlek 11.33 KB
Antal Installationer 266
Aktuell Version 1.1.1
Senast Uppdaterad 2017-04-27
Publiceringsdatum 2017-04-27
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Sindre Bøyum
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/boyum/google-counter/
Stödda Språk 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"
            ]
        }
    ]
}