Examine source code of Nightcorer

Inspect and view changes in Nightcorer 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Nightcorer",
  "version": "1.1.2",
  "description": "Nightcores YouTube videos on the fly.",
  "browser_action": {
    "default_icon": "resources/nightcorer16.png",
    "default_popup": "scripts/popup.html"
  },
  "icons": {
    "16": "resources/nightcorer16.png",
    "48": "resources/nightcorer48.png",
    "128": "resources/nightcorer128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "scripts/audio-input-effects.js",
        "scripts/main.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "storage"
  ]
}