VPSA Lesson Speed
Change video speed in VPSA Self Paced lessons
什么是VPSA Lesson Speed?
VPSA Lesson Speed是由alexstore06开发的Chrome扩展程序,该扩展的主要功能是“Change video speed in VPSA Self Paced lessons”。
扩展截图
下载VPSA Lesson Speed扩展crx文件
下载VPSA Lesson Speed扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to change the video speed in Veritas Press Self Paced lessons. Make sure to pin for easy access! Since the lesson does not open in a tab with an extension bar, you may want to change the speed before launching the lesson. Alternatively, you can just switch to another (or the original) Chrome window after launching the lesson and change the speed there.
扩展基本信息
名称 | VPSA Lesson Speed |
ID | daicgjbjbhhngeofbadldopjoicaklaf |
官方URL | https://chromewebstore.google.com/detail/vpsa-lesson-speed/daicgjbjbhhngeofbadldopjoicaklaf |
简介 | Change video speed in VPSA Self Paced lessons |
文件大小 | 13.88 KB |
安装次数 | 74 |
当前版本 | 1.1 |
更新时间 | 2023-11-20 |
上架时间 | 2023-01-17 |
评分 | 5.00/5 共3次评分 |
开发者 | alexstore06 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "VPSA Lesson Speed", "description": "Change video speed in VPSA Self Paced lessons", "version": "1.1", "icons": { "16": "veritas-16.png", "32": "veritas-32.png", "48": "veritas-48.png", "128": "veritas-128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/sp.veritaspress.com\/*", "https:\/\/sp.veritaspress.com\/*" ], "js": [ "veritas.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "veritas.html" } } |