Netflix Progress Bar

Adds a permanent progress bar below Netflix videos. Works in fullscreen. Source: https://github.com/bggrund/NetflixProgressBar

What is Netflix Progress Bar?

Netflix Progress Bar is a Chrome extension developed by bggrund, and its main feature is "Adds a permanent progress bar below Netflix videos. Works in fullscreen. Source: https://github.com/bggrund/NetflixProgressBar".

Extension Screenshots

screenshot

Download Netflix Progress Bar Extension CRX File

Download Netflix 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 below Netflix videos. Works in fullscreen.

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

Extension Basic Information

Name Netflix Progress Bar Netflix Progress Bar
ID fgfpffcjpmpnlfkibffdeddjohgbieka
Official URL https://chromewebstore.google.com/detail/netflix-progress-bar/fgfpffcjpmpnlfkibffdeddjohgbieka
Description Adds a permanent progress bar below Netflix videos. Works in fullscreen. Source: https://github.com/bggrund/NetflixProgressBar
File Size 5.56 KB
Installation Count 35
Current Version 1.0
Last Updated 2021-07-19
Publish Date 2021-07-18
Developer bggrund
Email [email protected]
Payment Type free
Extension Website https://github.com/bggrund/NetflixProgressBar
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Progress Bar",
    "version": "1.0",
    "permissions": [
        "*:\/\/*.netflix.com\/*"
    ],
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ],
            "run_at": "document_idle"
        }
    ]
}