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 |
官方URL | 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\/" ] } |