Examine source code of YouTube Gradient Remover

Inspect and view changes in YouTube Gradient Remover 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": "YouTube Gradient Remover",
  "version": "1.0.0",
  "description": "Removes the stupid gradient in the background of youtube videos",
  "icons": {
    "48": "./icon.svg"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch?*"
      ],
      "js": [
        "./convert.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{8e5bbbe5-032a-459e-a8f0-b1bef605cccd}"
    }
  }
}