Permanent Progress Bar for YouTube

Always display a tiny progress bar with buffer loading on YouTube's player even in the fullscreen mode

Τι είναι το Permanent Progress Bar for YouTube;

Το Permanent Progress Bar for YouTube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον emano.waldeck, και η κύρια λειτουργία του είναι "Always display a tiny progress bar with buffer loading on YouTube's player even in the fullscreen mode".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Permanent Progress Bar for YouTube

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

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

                        This extension brings a small, persistent progress bar to the YouTube player, enhancing your viewing experience. You can customize the extension to adjust the bar's height and color on the options page.

The beauty of this feature lies in its adaptability ? it remains hidden until the default YouTube progress bar disappears, even in fullscreen mode!

The primary goal is to offer a constant visual cue of the player's progress status. If the bar appears too slim for your screen, head to the options page and tweak the height setting.

Exciting Features:
1. Keep track of the loaded percentage (buffered video progress).
2. Monitor the current position of the player.
3. Enjoy timely updates of these percentages every 2 seconds.
4. Almost all features are fully customizable through the options page.
5. Compatible with the YouTube website and embedded YouTube players on any website.

Recent Changes:
Version 0.2.0:
1. The extension has been upgraded to manifest v3, ensuring improved functionality and performance.                    

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

Όνομα Permanent Progress Bar for YouTube Permanent Progress Bar for YouTube
ID dammfdepmngjjoidfdbhkjboecgceamb
Επίσημο URL https://chromewebstore.google.com/detail/permanent-progress-bar-fo/dammfdepmngjjoidfdbhkjboecgceamb
Περιγραφή Always display a tiny progress bar with buffer loading on YouTube's player even in the fullscreen mode
Μέγεθος Αρχείου 34.21 KB
Αριθμός Εγκαταστάσεων 4,430
Τρέχουσα Έκδοση 0.2.9
Τελευταία Ενημέρωση 2023-12-04
Ημερομηνία Δημοσίευσης 2019-07-22
Αξιολόγηση 4.21/5 Συνολικά 52 Αξιολογήσεις
Προγραμματιστής emano.waldeck
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/youtube-tools.html?from=progress
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/youtube-tools.html?from=progress
Υποστηριζόμενες Γλώσσες de,en,fr,es,it,pt-BR,ru,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Permanent Progress Bar for YouTube",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.2.9",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "data\/inject\/main.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "world": "MAIN"
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "data\/inject\/isolated.js"
            ],
            "css": [
                "data\/inject\/isolated.css"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "world": "ISOLATED"
        }
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/youtube-tools.html?from=progress",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "action": [],
    "options_ui": {
        "page": "data\/options\/index.html"
    },
    "commands": {
        "toggle_display": {
            "description": "Use this shortcut to show or hide the permanent progress bar"
        }
    }
}