Video Speed Lord

This extension allow you to control the speed of the video playing. Feel like a time lord!

What is Video Speed Lord?

Video Speed Lord is a Chrome extension developed by roman.oxenuk, and its main feature is "This extension allow you to control the speed of the video playing. Feel like a time lord!".

Download Video Speed Lord Extension CRX File

Download Video Speed Lord 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

                        Hackathon project for speeding up and slowing down HTML5 videos, especialy at vk.com =)
Thanks to GoHack Hackathon (vk.com/gohack) for pizza and fun!                    

Extension Basic Information

Name Video Speed Lord Video Speed Lord
ID kmeeediidboennbhdjfceodhdboaphlc
Official URL https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc
Description This extension allow you to control the speed of the video playing. Feel like a time lord!
File Size 5.75 KB
Installation Count 22
Current Version 1.0
Last Updated 2017-04-15
Publish Date 2017-04-15
Rating 5.00/5 Total 4 Ratings
Developer roman.oxenuk
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Speed Lord",
    "description": "This extension allow you to control the speed of the video playing. Feel like a time lord!",
    "version": "1.0",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click here!"
    },
    "permissions": [
        "activeTab",
        "debugger",
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ]
}