Video Speed Lord
This extension allow you to control the speed of the video playing. Feel like a time lord!
Vad är Video Speed Lord?
Video Speed Lord är en Chrome-tillägg utvecklad av roman.oxenuk, och dess huvudfunktion är "This extension allow you to control the speed of the video playing. Feel like a time lord!".
Ladda ner Video Speed Lord-förlängningens CRX-fil
Ladda ner Video Speed Lord-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | ![]() |
ID | kmeeediidboennbhdjfceodhdboaphlc |
Officiell webbadress | https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc |
Beskrivning | This extension allow you to control the speed of the video playing. Feel like a time lord! |
Filstorlek | 5.75 KB |
Antal Installationer | 22 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2017-04-15 |
Publiceringsdatum | 2017-04-15 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | roman.oxenuk |
Betalningssätt | free |
Stödda Språk | 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\/" ] } |