Khan Academy Playback Speed Controller
Controls the playback speed of your khan academy video
什么是Khan Academy Playback Speed Controller?
Khan Academy Playback Speed Controller是由Dhruman Gupta开发的Chrome扩展程序,该扩展的主要功能是“Controls the playback speed of your khan academy video”。
扩展截图
下载Khan Academy Playback Speed Controller扩展crx文件
下载Khan Academy Playback Speed Controller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is an extenstion that allows you to speed up your videos beyond 2x on khan academy. Made for power users :)
扩展基本信息
名称 | Khan Academy Playback Speed Controller |
ID | dndcpejlplhllhpagbmpdgchcmcdgnii |
官方URL | https://chromewebstore.google.com/detail/khan-academy-playback-spe/dndcpejlplhllhpagbmpdgchcmcdgnii |
简介 | Controls the playback speed of your khan academy video |
文件大小 | 8.19 KB |
安装次数 | 216 |
当前版本 | 1.0.0 |
更新时间 | 2022-04-15 |
上架时间 | 2022-04-14 |
评分 | 4.33/5 共3次评分 |
开发者 | Dhruman Gupta |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/DhrumanGupta/khan-academy-playback-speed |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Khan Academy Playback Speed Controller", "description": "Controls the playback speed of your khan academy video", "version": "1.0.0", "author": "Dhruman Gupta", "content_scripts": [ { "matches": [ "*:\/\/www.khanacademy.org\/*", "*:\/\/www.youtube-nocookie.com\/*" ], "all_frames": true, "js": [ "injectedKhanAcademy.js" ] } ], "action": { "default_title": "Khan Academy playback speed", "default_popup": "popup.html" }, "icons": { "128": "images\/logo_128.png" }, "permissions": [ "activeTab", "tabs", "storage" ] } |