Youtube speed control
This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
什么是Youtube speed control?
Youtube speed control是由wwf4开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?”。
扩展截图
下载Youtube speed control扩展crx文件
下载Youtube speed control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
ctrl + > - to speed up video ctrl + < - to slow down video ctrl + ? - to return x1 speed;
扩展基本信息
名称 | |
ID | gdnknkknodmhgpompjfmhcodhcnamldo |
官方URL | https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo |
简介 | This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ? |
文件大小 | 70.77 KB |
安装次数 | 623 |
当前版本 | 1.1 |
更新时间 | 2017-11-10 |
上架时间 | 2017-11-10 |
评分 | 4.75/5 共4次评分 |
开发者 | wwf4 |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube speed control", "description": "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?", "version": "1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage", "https:\/\/www.youtube.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ], "css": [ "styles.css" ], "all_frames": true } ] } |