Custom Youtube Playback Speed
Easy way to change youtube video playback speed
What is Custom Youtube Playback Speed?
Custom Youtube Playback Speed is a Chrome extension developed by PH03NIX Software, and its main feature is "Easy way to change youtube video playback speed".
Extension Screenshots
Download Custom Youtube Playback Speed Extension CRX File
Download Custom Youtube Playback Speed 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
Simple extension, which let you change playback speed of youtube videos. You can setup value form range 0.10x to 10x with 0.10x step. 3 ways of control integrated into youtube interface: by slider, numeric input or by keys defined in settings.
Extension Basic Information
Name | Custom Youtube Playback Speed |
ID | mlnghacnjjppjfbbjbpkgcemiaglbpii |
Official URL | https://chromewebstore.google.com/detail/custom-youtube-playback-s/mlnghacnjjppjfbbjbpkgcemiaglbpii |
Description | Easy way to change youtube video playback speed |
File Size | 174 KB |
Installation Count | 116 |
Current Version | 1.4.3 |
Last Updated | 2023-12-03 |
Publish Date | 2022-02-01 |
Rating | 4.67/5 Total 3 Ratings |
Developer | PH03NIX Software |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Custom Youtube Playback Speed", "description": "Easy way to change youtube video playback speed", "version": "1.4.3", "short_name": "YTSpeed", "author": "Krzaku", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_popup": "index.html", "default_title": "Custom yt playback speed settings" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "index.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "icons": { "16": "\/icons\/extension_icon16.png", "32": "\/icons\/extension_icon32.png", "48": "\/icons\/extension_icon48.png", "128": "\/icons\/extension_icon128.png" } } |