Twitch Progress Bar
Adds a progress bar below twitch VODs
What is Twitch Progress Bar?
Twitch Progress Bar is a Chrome extension developed by bggrund, and its main feature is "Adds a progress bar below twitch VODs".
Extension Screenshots
Download Twitch Progress Bar Extension CRX File
Download Twitch 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 below twitch VODs Source: https://github.com/bggrund/TwitchProgressBar
Extension Basic Information
Name | |
ID | dpcalklgbkkoomllacpdakeljbfmfcaj |
Official URL | https://chromewebstore.google.com/detail/twitch-progress-bar/dpcalklgbkkoomllacpdakeljbfmfcaj |
Description | Adds a progress bar below twitch VODs |
File Size | 5.67 KB |
Installation Count | 12 |
Current Version | 1.0 |
Last Updated | 2021-07-19 |
Publish Date | 2021-07-18 |
Developer | bggrund |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/bggrund/TwitchProgressBar |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Progress Bar", "version": "1.0", "description": "Adds a progress bar below twitch VODs", "icons": { "128": "128.png" }, "browser_action": { "default_icon": "128.png" }, "permissions": [ "*:\/\/*.twitch.tv\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "content-script.js" ], "css": [ "content-script.css" ], "run_at": "document_idle" } ] } |