BetterVRV

A suite of improvements to the VRV player and experience.

Τι είναι το BetterVRV;

Το BetterVRV είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tucker Chapin, και η κύρια λειτουργία του είναι "A suite of improvements to the VRV player and experience.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης BetterVRV

Λήψη αρχείων επέκτασης BetterVRV σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        - Hide potential spoilers in the thumbnails and descriptions
 - Control the playback speed
 - Better control from the keyboard:
       - Seek with the keyboard
       - Adjust the volume and mute/unmute
       - Adjust the playback speed
       - Custom keybindings and increments for total control
 - Skip intros and auto-play the next episode when the outro/ending starts
 - Reorganize the home page of VRV to be more relevant to you; bringing the "Continue Watching" section right to the top
 - ...and many other upgrades to make the VRV experience better

This extension relies on our users submitting timestamps for when intros/outros/etc. start and end so that other users can skip around these. Please consider reading the annotation guidelines and helping out by clicking on the BetterVRV icon in your Chrome taskbar to add annotations when you're watching an episode. It only takes a moment and makes everyone else's experience that much better.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα BetterVRV BetterVRV
ID dhghipbelapdpgpdfmkebjnnokhpeock
Επίσημο URL https://chromewebstore.google.com/detail/bettervrv/dhghipbelapdpgpdfmkebjnnokhpeock
Περιγραφή A suite of improvements to the VRV player and experience.
Μέγεθος Αρχείου 2.52 MB
Αριθμός Εγκαταστάσεων 484
Τρέχουσα Έκδοση 0.3.13
Τελευταία Ενημέρωση 2019-02-07
Ημερομηνία Δημοσίευσης 2019-02-07
Αξιολόγηση 3.50/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Tucker Chapin
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://tuckerchap.in/BetterVRV/
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BetterVRV",
    "short_name": "BetterVRV",
    "version": "0.3.13",
    "description": "A suite of improvements to the VRV player and experience.",
    "homepage_url": "http:\/\/tuckerchap.in\/BetterVRV\/",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "declarativeContent"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "19": "images\/icon19.png",
        "38": "images\/icon38.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    },
    "background": {
        "scripts": [
            "background\/onInstall.js",
            "background\/vrvTabManager.js"
        ],
        "persistent": false
    },
    "options_page": "index.html",
    "page_action": {
        "default_popup": "index.html?popup=true",
        "default_icon": {
            "16": "images\/icon16.png",
            "19": "images\/icon19.png",
            "38": "images\/icon38.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png",
            "256": "images\/icon256.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/vrv.co\/*"
            ],
            "css": [
                "content_scripts\/top-site\/css\/vrvStyling.css"
            ],
            "js": [
                "content_scripts\/top-site\/js\/topMessenger.js",
                "content_scripts\/insertScript.js",
                "content_scripts\/defaultOptions.js",
                "content_scripts\/top-site\/js\/vrvStyling.js"
            ]
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/static.vrv.co\/vilos\/player.html"
            ],
            "css": [
                "content_scripts\/player\/css\/global.css",
                "content_scripts\/player\/css\/hideLoadingPoster.css",
                "content_scripts\/player\/css\/controls.css",
                "content_scripts\/player\/css\/statusIcons.css",
                "content_scripts\/player\/css\/skipButtons.css"
            ],
            "js": [
                "content_scripts\/player\/js\/playerMessenger.js",
                "content_scripts\/insertScript.js",
                "content_scripts\/defaultOptions.js",
                "content_scripts\/player\/js\/injector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "lib\/*",
        "images\/*",
        "images\/status_icons\/*",
        "fonts\/*",
        "content_scripts\/*",
        "index.html"
    ],
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'"
}