Video Speed Lord

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

Qu'est-ce que Video Speed Lord ?

Video Speed Lord est une extension Chrome développée par roman.oxenuk, et sa fonction principale est "This extension allow you to control the speed of the video playing. Feel like a time lord!".

Télécharger le fichier CRX de l'extension Video Speed Lord

Téléchargez les fichiers d'extension Video Speed Lord au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Video Speed Lord Video Speed Lord
ID kmeeediidboennbhdjfceodhdboaphlc
URL Officiel 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!
Taille du Fichier 5.75 KB
Nombre d'Installations 22
Version Actuelle 1.0
Dernière Mise à Jour 2017-04-15
Date de Publication 2017-04-15
Évaluation 5.00/5 Total 4 Évaluations
Développeur roman.oxenuk
Type de Paiement free
Langues Prises en Charge 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\/"
    ]
}