Reddit Time Tracker - Monitor Your Usage

Track how much time you're spending on Reddit.

Τι είναι το Reddit Time Tracker - Monitor Your Usage;

Το Reddit Time Tracker - Monitor Your Usage είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον RedditTimeTracker, και η κύρια λειτουργία του είναι "Track how much time you're spending on Reddit.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Reddit Time Tracker - Monitor Your Usage

Λήψη αρχείων επέκτασης Reddit Time Tracker - Monitor Your Usage σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Google chrome extension that tracks time spent browsing Reddit.

Reddit Time Tracker keeps track of how much time users spend on Reddit on a daily, weekly, monthly, and yearly basis and helps users better understand their Reddit usage habits. It also shows how much more/less a user has spent on Reddit compared to the previous time period of usage (e.g. previous day, week, month, year) to show Reddit usage trends.

Note: Reddit usage time is only tracked when Reddit is the active tab. Time tracking stops when the Reddit tab loses focus (e.g. user clicks into another tab or another browser window), even if a Reddit tab is fully/partially visible on the user's screen.

The source code is available at https://github.com/justindho/RedditTimeTracker. Feel free to provide feedback and suggest new features.

### Current Features ###

- Keeps track of your daily, weekly, monthly, yearly, and all-time Reddit usage statistics.
- Shows you how much more/less you are browsing Reddit relative to the past time period.
- You can set a daily time limit on your Reddit browsing (go to chrome://extensions -> Reddit Time Tracker (Details) -> Extension Options). Once you've reached your pre-set daily browsing limit, you won't be able to browse Reddit unless you choose to update your settings.

### Latest Updates ###

0.3.4 - Fixed bug where 'week' time wasn't resetting to 0.
0.3.3 - Minor bug fixes.
0.3.2 - Minor bug fixes.
0.3.1 - Fixed bug where color of trend didn't change color. Minor fixes on options page.
0.3.0 - Added option to set a daily Reddit browsing time limit. Fix bug where sign of trend increase/decrease wasn't showing up properly.                    

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

Όνομα Reddit Time Tracker - Monitor Your Usage Reddit Time Tracker - Monitor Your Usage
ID kjihonoaammpoioflmhjghkeibmkmmlh
Επίσημο URL https://chromewebstore.google.com/detail/reddit-time-tracker-monit/kjihonoaammpoioflmhjghkeibmkmmlh
Περιγραφή Track how much time you're spending on Reddit.
Μέγεθος Αρχείου 312 KB
Αριθμός Εγκαταστάσεων 25
Τρέχουσα Έκδοση 0.3.4
Τελευταία Ενημέρωση 2019-07-02
Ημερομηνία Δημοσίευσης 2019-07-02
Προγραμματιστής RedditTimeTracker
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/justindho/RedditTimeTracker
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Time Tracker - Monitor Your Usage",
    "version": "0.3.4",
    "description": "Track how much time you're spending on Reddit.",
    "manifest_version": 2,
    "author": "Justin Ho",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Reddit Time Tracker",
        "default_icon": "img\/icon_reddit.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "js\/app.js"
            ],
            "css": [
                "css\/app.css"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'; connect-src 'self' wss:\/\/*.firebaseio.com;",
    "icons": {
        "16": "img\/icon_reddit.png",
        "32": "img\/icon_reddit.png",
        "64": "img\/icon_reddit.png",
        "128": "img\/icon_reddit.png"
    },
    "options_ui": {
        "page": "templates\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "alarms",
        "*:\/\/*.reddit.com\/*",
        "storage",
        "tabs"
    ],
    "short_name": "RTT",
    "web_accessible_resources": [
        "css\/app.css",
        "img\/*.svg"
    ]
}