VRV Next Episode

VRV Next Episode

VRV Plugin to allow redirection to next episode with hotkey press

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VRV Next Episode",
  "version": "0.0.0.3",
  "description": "VRV Plugin to allow redirection to next episode with hotkey press",
  "author": "Richmond Lim",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "https://vrv.co/watch/*",
    "https://api.vrv.co/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/vrv-plug16.png",
      "32": "images/vrv-plug32.png",
      "48": "images/vrv-plug48.png",
      "128": "images/vrv-plug128.png"
    }
  },
  "commands": {
    "next-episode": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "MacCtrl+Shift+L"
      },
      "description": "Send a 'next-episode' event to the extension"
    }
  }
}