Video Speed Lord
This extension allow you to control the speed of the video playing. Feel like a time lord!
Apa itu Video Speed Lord?
Video Speed Lord adalah ekstensi Chrome yang dikembangkan oleh roman.oxenuk, dan fitur utamanya adalah "This extension allow you to control the speed of the video playing. Feel like a time lord!".
Unduh Berkas CRX Ekstensi Video Speed Lord
Unduh file ekstensi Video Speed Lord dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | ![]() |
ID | kmeeediidboennbhdjfceodhdboaphlc |
URL Resmi | https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc |
Deskripsi | This extension allow you to control the speed of the video playing. Feel like a time lord! |
Ukuran File | 5.75 KB |
Jumlah Instalasi | 22 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2017-04-15 |
Tanggal Publikasi | 2017-04-15 |
Penilaian | 5.00/5 Total 4 Penilaian |
Pengembang | roman.oxenuk |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/" ] } |