Hide Youtube Progress Bar

Easily hide Youtube’s progress bar and all other information that shows the total duration of the video

What is Hide Youtube Progress Bar?

Hide Youtube Progress Bar is a Chrome extension developed by Unknown, and its main feature is "Easily hide Youtube’s progress bar and all other information that shows the total duration of the video".

Extension Screenshots

screenshot
screenshot

Download Hide Youtube Progress Bar Extension CRX File

Download Hide 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

                        This is it to avoid spoilers given by the total time of the video and the related videos. Can easily be turned on and off!
Icon created by DesignBolts                    

Extension Basic Information

Name Hide Youtube Progress Bar Hide Youtube Progress Bar
ID peojoklnhinheognhigeliholccihoec
Official URL https://chromewebstore.google.com/detail/hide-youtube-progress-bar/peojoklnhinheognhigeliholccihoec
Description Easily hide Youtube’s progress bar and all other information that shows the total duration of the video
File Size 14.88 KB
Installation Count 2,657
Current Version 1.0
Last Updated 2016-03-03
Publish Date 2016-03-03
Rating 4.07/5 Total 29 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/NicolaiThorup/Chrome-Hide-Youtube-Progress-Bar
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide Youtube Progress Bar",
    "description": "Easily hide Youtube\u2019s progress bar and all other information that shows the total duration of the video",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "bg.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "64": "icon64.png"
        },
        "default_title": "Hide or show Youtube's progress bar ",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}