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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης VRV Speed Controls

Λήψη αρχείων επέκτασης 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"
    }
}