Video Speed Lord

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

Wat is Video Speed Lord?

Video Speed Lord is een Chrome-extensie ontwikkeld door roman.oxenuk, en de belangrijkste functie is "This extension allow you to control the speed of the video playing. Feel like a time lord!".

Download het CRX-bestand van de extensie Video Speed Lord

Download Video Speed Lord-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Video Speed Lord Video Speed Lord
ID kmeeediidboennbhdjfceodhdboaphlc
Officiële URL https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc
Beschrijving This extension allow you to control the speed of the video playing. Feel like a time lord!
Bestandsgrootte 5.75 KB
Aantal Installaties 22
Huidige Versie 1.0
Laatst Bijgewerkt 2017-04-15
Publicatiedatum 2017-04-15
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar roman.oxenuk
Betalingswijze free
Ondersteunde Talen 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\/"
    ]
}