VRV Speed Controls

Adds a speed button to the VRV player. Clicking the button increases the speed by 0.5x, with a max of 3x. Right clicking the button…

什么是VRV Speed Controls?

VRV Speed Controls是由Yuudaari开发的Chrome扩展程序,该扩展的主要功能是“Adds a speed button to the VRV player. Clicking the button increases the speed by 0.5x, with a max of 3x. Right clicking the button…”。

扩展截图

screenshot

下载VRV Speed Controls扩展crx文件

下载VRV Speed Controls扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Adds a speed button to the VRV player. Clicking the button increases the speed by 0.5x, with a max of 3x. Right clicking the button decreases the speed by 0.5x. 

The speed is retained between videos, and sessions, in chrome storage.

I mainly made this extension for myself, and I didn't need anything fancy. Report any bugs to the GitHub.


Changelog:

v1.1.0 — Added a "next video" button. The button will always appear even if there is no next video. The functionality should never break, however, as it simply seeks to the end of the video and plays. This allows VRV to handle the "end of video" as per normal.

v1.1.1 — Made the speed on the icon more readable.

v1.1.2 — Fixed the "next video" button not always working. (Isn't that ironic, in the intial version I said it would never break! TBH, no idea why it did break. I'm going to blame VRV for being bad.)                    

扩展基本信息

名称 VRV Speed Controls VRV Speed Controls
ID bblbllniiehfgibhedbmpkkeinppciln
官方URL https://chromewebstore.google.com/detail/vrv-speed-controls/bblbllniiehfgibhedbmpkkeinppciln
简介 Adds a speed button to the VRV player. Clicking the button increases the speed by 0.5x, with a max of 3x. Right clicking the button…
文件大小 9.98 KB
安装次数 381
当前版本 1.1.2
更新时间 2019-02-24
上架时间 2019-02-23
评分 4.75/5 共4次评分
开发者 Yuudaari
付费类型 free
扩展官网 https://github.com/Yuudaari/VrvSpeedControls
帮助页面URL https://github.com/Yuudaari/VrvSpeedControls/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "VRV Speed Controls",
    "short_name": "VrvSpeedControls",
    "version": "1.1.2",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/static.vrv.co\/*"
            ],
            "js": [
                "index.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}