Dumb Stats

Monitor fun statistics about your web activity with Dumb Stats.

Τι είναι το Dumb Stats;

Το Dumb Stats είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον bekbeis.dev, και η κύρια λειτουργία του είναι "Monitor fun statistics about your web activity with Dumb Stats.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

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

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

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

                        Dumb Stats tracks user actions such as clicking, scrolling, typing, and opening pages and calculates fun statistics about these actions. You can know 
- How many calories you burn by clicking a mouse;
- How many meters of web pages you scroll every day;
- What novel you could have typed with your number of keypresses;
- How much time approximately you have spent browsing internet.


[ Please, pay attention ]
- Because of the Chrome restrictions, Dumb Stats do not work on the Web Store pages and pages such as “new tab”. In order to see how it works, please, open any other website and try it there.
- After installing the extension, reload the previously opened pages if you want the extension to count them as “viewed pages”. Clicks, scroll, and keystrokes are calculated without reloading.
- We do not collect or store any of your personal information. Data about the number of clicks, scrolls, keystrokes, and pages viewed is stored in your browser’s local storage.


Press the reset button, if you want to clear the previously collected data and set everything to zero.


We hope you enjoy Dumb Stats!                    

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

Όνομα Dumb Stats Dumb Stats
ID daifepjkmeaghpkmnljbmkpacimoagam
Επίσημο URL https://chromewebstore.google.com/detail/dumb-stats/daifepjkmeaghpkmnljbmkpacimoagam
Περιγραφή Monitor fun statistics about your web activity with Dumb Stats.
Μέγεθος Αρχείου 103 KB
Αριθμός Εγκαταστάσεων 101
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2022-07-27
Ημερομηνία Δημοσίευσης 2022-07-27
Αξιολόγηση 5.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής bekbeis.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dumb Stats",
    "version": "1.0",
    "description": "Monitor fun statistics about your web activity with Dumb Stats.",
    "permissions": [
        "tabs",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background\/index.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "\/assets\/icons\/16.png",
            "24": "\/assets\/icons\/24.png",
            "32": "\/assets\/icons\/32.png"
        },
        "default_title": "Dumb Stats",
        "default_popup": "pages\/popup\/index.html"
    },
    "icons": {
        "16": "\/assets\/icons\/16.png",
        "32": "\/assets\/icons\/32.png",
        "128": "\/assets\/icons\/128.png"
    },
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "content\/import-index.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "chunks\/*-*.js",
                "content\/index.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}