ToggleVideoProgressBars

Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo

What is ToggleVideoProgressBars?

ToggleVideoProgressBars is a Chrome extension developed by rossjgosling, and its main feature is "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo".

Extension Screenshots

screenshot

Download ToggleVideoProgressBars Extension CRX File

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

                        Provides a context menu button, as well as a standard browser icon button, that when pressed toggles the visibility of progress bars and displayed time for various video players!

Supports YouTube, Netflix, Amazon, and Vimeo

Firefox Version: https://addons.mozilla.org/en-GB/firefox/addon/togglevideoprogressbars/                    

Extension Basic Information

Name ToggleVideoProgressBars ToggleVideoProgressBars
ID hmenobknlandacpmndhikkcijdkpaccm
Official URL https://chromewebstore.google.com/detail/togglevideoprogressbars/hmenobknlandacpmndhikkcijdkpaccm
Description Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo
File Size 14.85 KB
Installation Count 29
Current Version 1.0.5
Last Updated 2022-03-30
Publish Date 2020-06-01
Rating 5.00/5 Total 1 Ratings
Developer rossjgosling
Email [email protected]
Payment Type free
Extension Website https://github.com/RossGosling-Github/ToggleVideoProgressBars
Help Page URL https://github.com/RossGosling-Github/ToggleVideoProgressBars/issues
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ToggleVideoProgressBars",
    "version": "1.0.5",
    "description": "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo",
    "icons": {
        "16": "icon\/main.png",
        "32": "icon\/main.png",
        "64": "icon\/main.png",
        "128": "icon\/main.png"
    },
    "browser_action": {
        "default_icon": {
            "128": "icon\/visible.png"
        },
        "browser_style": true,
        "default_title": "ToggleVideoProgressBars Toggle"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "http*:\/\/*youtube.*",
                "http*:\/\/*youtu.be*",
                "http*:\/\/*netflix.*",
                "http*:\/\/*amazon.*",
                "http*:\/\/*vimeo.*"
            ],
            "js": [
                "src\/common.js",
                "src\/document.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/common.js",
            "src\/background.js"
        ]
    },
    "web_accessible_resources": [
        "style\/*.css"
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "",
        "tabs"
    ]
}