YouTube Progress Bar

Adds a progress bar below YouTube videos

What is YouTube Progress Bar?

YouTube Progress Bar is a Chrome extension developed by bggrund, and its main feature is "Adds a progress bar below YouTube videos".

Extension Screenshots

screenshot

Download YouTube Progress Bar Extension CRX File

Download YouTube Progress Bar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Adds a permanent progress bar and timestamp beneath YouTube videos and movies

Source: https://github.com/bggrund/YouTubeProgressBar                    

Extension Basic Information

Name YouTube Progress Bar YouTube Progress Bar
ID gcbpebcnhbpcommcmoiaepfaalanakhh
Official URL https://chromewebstore.google.com/detail/youtube-progress-bar/gcbpebcnhbpcommcmoiaepfaalanakhh
Description Adds a progress bar below YouTube videos
File Size 5.94 KB
Installation Count 35
Current Version 1.0
Last Updated 2021-07-19
Publish Date 2021-07-18
Rating 4.25/5 Total 4 Ratings
Developer bggrund
Email [email protected]
Payment Type free
Extension Website https://github.com/bggrund/YouTubeProgressBar
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Progress Bar",
    "version": "1.0",
    "description": "Adds a progress bar below YouTube videos",
    "icons": {
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": "128.png"
    },
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "time.js"
            ],
            "css": [
                "time.css"
            ],
            "run_at": "document_idle"
        }
    ]
}