YouTube Speed Control
Control the speed of YouTube videos!
What is YouTube Speed Control?
YouTube Speed Control is a Chrome extension developed by https://avi12.com, and its main feature is "Control the speed of YouTube videos!".
Extension Screenshots
Download YouTube Speed Control Extension CRX File
Download YouTube Speed Control 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
The one-stop solution for changing the speed of every video you watch on YouTube, including outside of YouTube.com! Source code: https://github.com/avi12/youtube-speed-control
Extension Basic Information
Name | YouTube Speed Control |
ID | dmpbgbehgckaijcpmodinibhkdgbifif |
Official URL | https://chromewebstore.google.com/detail/youtube-speed-control/dmpbgbehgckaijcpmodinibhkdgbifif |
Description | Control the speed of YouTube videos! |
File Size | 83.99 KB |
Installation Count | 336 |
Current Version | 2.1.6 |
Last Updated | 2022-04-10 |
Publish Date | 2020-11-02 |
Rating | 5.00/5 Total 4 Ratings |
Developer | https://avi12.com |
[email protected] | |
Payment Type | free |
Extension Website | https://avi12.com |
Help Page URL | https://github.com/avi12/youtube-speed-control/issues/new/choose |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Speed Control", "short_name": "YT Speed", "description": "Control the speed of YouTube videos!", "version": "2.1.6", "manifest_version": 3, "author": "avi12", "developer": { "name": "avi12", "url": "https:\/\/avi12.com\/youtube-speed-control" }, "icons": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "38": "images\/icon-38.png", "48": "images\/icon-48.png", "64": "images\/icon-64.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "https:\/\/*.youtube-nocookie.com\/*" ], "js": [ "build\/scripts\/ytsc-content-script-initialize.js" ], "css": [ "build\/styles-injected\/main.css" ], "all_frames": true } ], "permissions": [ "storage" ], "action": { "default_title": "YouTube Speed Control", "default_popup": "popup.html", "default_icon": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "38": "images\/icon-38.png", "48": "images\/icon-48.png", "64": "images\/icon-64.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png" } }, "offline_enabled": true, "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |