Examine source code of Youtube Nonstop YTFix

Inspect and view changes in Youtube Nonstop YTFix 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
{
  "author": "YTFix youtube nonstop team",
  "name": "__MSG_name__",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com https://*.googleapis.com blob:; object-src 'self'",
  "description": "__MSG_description__",
  "default_locale": "en",
  "manifest_version": 2,
  "version": "0.8.5",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png",
    "300": "icons/icon300.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "https://www.youtube.com/*",
        "https://music.youtube.com/*",
        "https://m.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "<all_urls>",
    "downloads",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "incognito": "spanning",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}