Link Counter

Displays a count of pages visited on current domain. Optionally introduces a 250ms delay to all page navigation.

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

Το Link Counter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Bryan Beard, και η κύρια λειτουργία του είναι "Displays a count of pages visited on current domain. Optionally introduces a 250ms delay to all page navigation.".

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

screenshot

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

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

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

                        In an effort to prevent technology from distracting me from my life, I made this extension to disrupt the addictive nature of web browsing. As of the current release, there are two features to support spending less time on the internet.

The first is a counter that tracks how many pages have been visited on the current domain. For example, while on any page of www.reddit.com, a badge on the toolbar icon will show a count of pages navigated under reddit. If I move to www.pinterest.com, the badge will update to reflect pages visited under pinterest. Any time you would like to reset the clock for tracking links, simply click 'Reset History' from the toolbar menu. This is a great way to maintain awareness of browsing activity, similar to other apps that track screen time.

The second feature is turned off by default. By selecting the checkbox for 'Delay Mode' under the toolbar menu, a 250 millisecond delay is added to all web requests to simulate a minor network slowdown. Research shows that even a small delay will cause users to browse less. According to Harry Shum, computer scientist at Microsoft, "Two hundred fifty milliseconds, either slower or faster, is close to the magic number now for competitive advantage on the Web." Any slower, and a user will visit a website less often (https://www.nytimes.com/2012/03/01/technology/impatient-web-users-flee-slow-loading-sites.html).

By adding a modicum of frustration to the browsing experience, my hope is to make your favorite time waster just a little less addictive.

Repo can be found here:
https://github.com/bananasakimbo/chrome-extension-link-counter                    

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

Όνομα Link Counter Link Counter
ID pgmecgbodgbbimifehibeojmehopiega
Επίσημο URL https://chromewebstore.google.com/detail/link-counter/pgmecgbodgbbimifehibeojmehopiega
Περιγραφή Displays a count of pages visited on current domain. Optionally introduces a 250ms delay to all page navigation.
Μέγεθος Αρχείου 28.72 KB
Αριθμός Εγκαταστάσεων 289
Τρέχουσα Έκδοση 0.0.0.5
Τελευταία Ενημέρωση 2019-07-10
Ημερομηνία Δημοσίευσης 2019-07-09
Αξιολόγηση 3.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Bryan Beard
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Counter",
    "version": "0.0.0.5",
    "description": "Displays a count of pages visited on current domain. Optionally introduces a 250ms delay to all page navigation.",
    "permissions": [
        "storage",
        "history",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "\/backgrounds\/initialize.js",
            "\/backgrounds\/main.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "24": "images\/passport.png"
        }
    },
    "manifest_version": 2
}