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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में VRV Speed Controls एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}