YouTube Time

Prevent procrastination by setting a daily time limit for your YouTube usage.

Τι είναι το YouTube Time;

Το YouTube Time είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Chris Smith, και η κύρια λειτουργία του είναι "Prevent procrastination by setting a daily time limit for your YouTube usage.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Features:
- Countdown timer: visible in the extension icon and popup window
- Configurable daily time limit (found in the options page)
- Ability to customize your time limit for each day of the week
- Additional options for adjusting when the timer resets each day and whether to pause the timer when YouTube is minimized/out of focus
- Temporary override mode in case you need to watch a video after the time limit has expired (with a configurable override limit)

YouTube Time is open source. You can find the source code here: 
https://github.com/ChrisSmith2/YouTube-Time

Changelog:
1.4.5
- Stopped the timer from running on music.youtube.com

1.4.4
- Added option to customize the time limit for each day of the week

1.4.3
- Added support for youtubekids.com (can be toggled in the options)
- Bug fixes and code optimization

1.4.2
- Bug fix

1.4.1
- Added option to limit the number of overrides allowed per day
- Made "Pause timer when YouTube is minimized/out of focus" option enabled by default

1.4.0
- Added option to change when the timer resets each day
- Added option to pause the timer when YouTube is minimized/out of focus
- Updated icon
- Bug fixes

1.3.0
- Fixed bug preventing time limit from being changed and made override mode more reliable

This extension uses Google Analytics to collect extension usage statistics to help improve user experience. The information collected through Google Analytics is anonymized and used solely to assess usage trends. It does not include data that allows for the identification of individual users. If you want to opt-out of Google Analytics tracking, please visit http://tools.google.com/dlpage/gaoptout.

Icon by Icons8 (https://icons8.com)                    

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

Όνομα YouTube Time YouTube Time
ID ooilajigbnoajdapojdpglknkpedmcbj
Επίσημο URL https://chromewebstore.google.com/detail/youtube-time/ooilajigbnoajdapojdpglknkpedmcbj
Περιγραφή Prevent procrastination by setting a daily time limit for your YouTube usage.
Μέγεθος Αρχείου 82.32 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 1.4.5
Τελευταία Ενημέρωση 2020-11-30
Ημερομηνία Δημοσίευσης 2020-06-18
Αξιολόγηση 4.47/5 Συνολικά 53 Αξιολογήσεις
Προγραμματιστής Chris Smith
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Time",
    "description": "Prevent procrastination by setting a daily time limit for your YouTube usage.",
    "version": "1.4.5",
    "icons": {
        "128": "images\/icon - 128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtubekids.com\/*"
            ],
            "js": [
                "saveVideo.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "\/images\/icon.png",
        "default_popup": "\/pages\/popup.html"
    },
    "options_page": "\/pages\/options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}