Nightcorer

Nightcorer

Nightcores YouTube videos on the fly.

Merlin
Additional files are visible only to premium users

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