Google Counter

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

Τι είναι το Google Counter;

Το Google Counter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sindre Bøyum, και η κύρια λειτουργία του είναι "Counts how many times a day the browser visits the Google search page".

Λήψη αρχείου CRX της επέκτασης Google Counter

Λήψη αρχείων επέκτασης Google Counter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
Επίσημο URL https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
Περιγραφή Counts how many times a day the browser visits the Google search page
Μέγεθος Αρχείου 11.33 KB
Αριθμός Εγκαταστάσεων 266
Τρέχουσα Έκδοση 1.1.1
Τελευταία Ενημέρωση 2017-04-27
Ημερομηνία Δημοσίευσης 2017-04-27
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Sindre Bøyum
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/boyum/google-counter/
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}