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 là gì?

VRV Speed Controls là một tiện ích mở rộng Chrome được phát triển bởi Yuudaari, và tính năng chính của nó là "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…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng VRV Speed Controls

Tải xuống các tệp mở rộng VRV Speed Controls dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên VRV Speed Controls VRV Speed Controls
ID bblbllniiehfgibhedbmpkkeinppciln
URL Chính Thức https://chromewebstore.google.com/detail/vrv-speed-controls/bblbllniiehfgibhedbmpkkeinppciln
Mô tả 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…
Kích Thước Tệp 9.98 KB
Số Lần Cài Đặt 381
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2019-02-24
Ngày Phát Hành 2019-02-23
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Yuudaari
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Yuudaari/VrvSpeedControls
URL Trang Trợ Giúp https://github.com/Yuudaari/VrvSpeedControls/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}