Examine source code of VLIVE Enhancer

Inspect and view changes in VLIVE Enhancer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "VLIVE Enhancer",
  "version": "1.0.4",
  "description": "Adds download buttons on vlive.tv",
  "author": "Mikhail Dydolov",
  "homepage_url": "https://gitlab.com/mikhaildyd/vlive-enhancer",
  "content_scripts": [
    {
      "matches": [
        "https://www.vlive.tv/*"
      ],
      "js": [
        "vlive.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "downloads"
  ]
}