Video Speed Lord
This extension allow you to control the speed of the video playing. Feel like a time lord!
Cos'è Video Speed Lord?
Video Speed Lord è un'estensione di Chrome sviluppata da roman.oxenuk, e la sua funzione principale è "This extension allow you to control the speed of the video playing. Feel like a time lord!".
Scarica il file CRX dell'estensione Video Speed Lord
Scarica i file di estensione Video Speed Lord in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | kmeeediidboennbhdjfceodhdboaphlc |
URL Ufficiale | https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc |
Descrizione | This extension allow you to control the speed of the video playing. Feel like a time lord! |
Dimensione del File | 5.75 KB |
Conteggio Installazioni | 22 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2017-04-15 |
Data di Pubblicazione | 2017-04-15 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | roman.oxenuk |
Tipo di Pagamento | free |
Lingue Supportate | 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\/" ] } |