Video Speed Lord

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

Co to jest Video Speed Lord?

Video Speed Lord to rozszerzenie Chrome opracowane przez roman.oxenuk, a jego główną funkcją jest „This extension allow you to control the speed of the video playing. Feel like a time lord!”.

Pobierz plik CRX rozszerzenia Video Speed Lord

Pobierz pliki rozszerzeń Video Speed Lord w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Video Speed Lord Video Speed Lord
ID kmeeediidboennbhdjfceodhdboaphlc
Oficjalny URL https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc
Opis This extension allow you to control the speed of the video playing. Feel like a time lord!
Rozmiar pliku 5.75 KB
Liczba instalacji 22
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-04-15
Data Publikacji 2017-04-15
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper roman.oxenuk
Typ Płatności free
Obsługiwane Języki 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\/"
    ]
}