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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}