VRV Speed Controls

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…

Merlin
Additional files are visible only to premium users

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