Examine source code of YT Looper: Repeat Youtube videos in loop

Inspect and view changes in YT Looper: Repeat Youtube videos in loop 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": "YT Looper: Repeat Youtube videos in loop",
  "short_name": "YT Looper",
  "description": "Loop, save, adjust length and playback speed of Youtube videos",
  "version": "0.7.4",
  "icons": {
    "16": "images/loop_icon16.png",
    "32": "images/loop_icon32.png",
    "48": "images/loop_icon48.png",
    "128": "images/loop_icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/loop_icon16.png",
      "32": "images/loop_icon32.png",
      "48": "images/loop_icon48.png",
      "128": "images/loop_icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "inject-script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [],
  "web_accessible_resources": [
    "bundle.js"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}