Video Speed Lord
This extension allow you to control the speed of the video playing. Feel like a time lord!
Was ist Video Speed Lord?
Video Speed Lord ist eine Chrome-Erweiterung, die von roman.oxenuk entwickelt wurde, und ihr Hauptmerkmal ist "This extension allow you to control the speed of the video playing. Feel like a time lord!".
Video Speed Lord-Erweiterungs-CRX-Datei herunterladen
Laden Sie Video Speed Lord-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | ![]() |
ID | kmeeediidboennbhdjfceodhdboaphlc |
Offizielle URL | https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc |
Beschreibung | This extension allow you to control the speed of the video playing. Feel like a time lord! |
Dateigröße | 5.75 KB |
Installationsanzahl | 22 |
Aktuelle Version | 1.0 |
Letztes Update | 2017-04-15 |
Veröffentlichungsdatum | 2017-04-15 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | roman.oxenuk |
Zahlungsart | free |
Unterstützte Sprachen | 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\/" ] } |