Video Speed Lord
This extension allow you to control the speed of the video playing. Feel like a time lord!
什麼是Video Speed Lord?
Video Speed Lord是由roman.oxenuk開發的Chrome擴展程式,該擴展的主要功能是“This extension allow you to control the speed of the video playing. Feel like a time lord!”。
下載Video Speed Lord擴展crx文件
下載Video Speed Lord擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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!
擴展基本資訊
名稱 | ![]() |
ID | kmeeediidboennbhdjfceodhdboaphlc |
官方網址 | https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc |
簡介 | This extension allow you to control the speed of the video playing. Feel like a time lord! |
檔案大小 | 5.75 KB |
安裝次數 | 22 |
目前版本 | 1.0 |
更新時間 | 2017-04-15 |
上架時間 | 2017-04-15 |
評分 | 5.00/5 共 4 次評分 |
開發者 | roman.oxenuk |
付費類型 | free |
支援的語言 | 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\/" ] } |