Video Speed Lord

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

Hvad er Video Speed Lord?

Video Speed Lord er en Chrome-udvidelse udviklet af roman.oxenuk, og dens hovedfunktion er "This extension allow you to control the speed of the video playing. Feel like a time lord!".

Download Video Speed Lord-udvidelses-CRX-fil

Download Video Speed Lord-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Video Speed Lord Video Speed Lord
ID kmeeediidboennbhdjfceodhdboaphlc
Officiel URL https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc
Beskrivelse This extension allow you to control the speed of the video playing. Feel like a time lord!
Filstørrelse 5.75 KB
Antal Installationer 22
Nuværende Version 1.0
Senest Opdateret 2017-04-15
Udgivelsesdato 2017-04-15
Bedømmelse 5.00/5 Samlet 4 Bedømmelser
Udvikler roman.oxenuk
Betalingsmetode free
Understøttede Sprog 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\/"
    ]
}