Examine source code of PokeTube Theme for YouTube

Inspect and view changes in PokeTube Theme for YouTube 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
{
  "action": {
    "default_icon": {
      "32": "/assets/icons/icon-32.png",
      "64": "/assets/icons/icon-64.png",
      "128": "/assets/icons/icon-128.png",
      "256": "/assets/icons/icon-256.png"
    },
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "style.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*.youtube-customizer.com/*",
        "*://*.cusmize.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "isolated_world": "script-src 'self' 'unsafe-eval'; object-src 'self'"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "externally_connectable": {
    "matches": [
      "*://*.youtube-customizer.com/*",
      "*://*.cusmize.com/*"
    ]
  },
  "icons": {
    "32": "/assets/icons/icon-32.png",
    "64": "/assets/icons/icon-64.png",
    "128": "/assets/icons/icon-128.png",
    "256": "/assets/icons/icon-256.png"
  },
  "manifest_version": 3,
  "name": "__MSG_name__",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "2.2.2",
  "version_name": "2.2.2",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "*.*",
        "/images/*.*",
        "/assets/*.*"
      ]
    }
  ]
}