Youtube speed control

This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?

What is Youtube speed control?

Youtube speed control is a Chrome extension developed by wwf4, and its main feature is "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?".

Extension Screenshots

screenshot

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

                        ctrl + > - to speed up video
ctrl + < - to slow down video
ctrl + ? - to return x1 speed;                    

Extension Basic Information

Name Youtube speed control Youtube speed control
ID gdnknkknodmhgpompjfmhcodhcnamldo
Official URL https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo
Description This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
File Size 70.77 KB
Installation Count 623
Current Version 1.1
Last Updated 2017-11-10
Publish Date 2017-11-10
Rating 4.75/5 Total 4 Ratings
Developer wwf4
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube speed control",
    "description": "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "all_frames": true
        }
    ]
}