Examine source code of PlayerTube

Inspect and view changes in PlayerTube 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": "PlayerTube",
  "description": "The secret ingredient for a older (and better) looking YouTube.",
  "version": "1.8.2",
  "homepage_url": "https://github.com/ktg5/PlayerTube",
  "background": {
    "scripts": [
      "src/pt-background.js"
    ],
    "persistent": false,
    "type": "module"
  },
  "icons": {
    "16": "img/playertube/resize/16.png",
    "32": "img/playertube/resize/32.png",
    "48": "img/playertube/resize/48.png",
    "128": "img/playertube/resize/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "src/pt-setup.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "src/pt-main.js"
      ]
    },
    {
      "matches": [
        "*://*.youtube.com/embed/*"
      ],
      "js": [
        "src/pt-setup.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://*.youtube.com/embed/*"
      ],
      "js": [
        "src/pt-main.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "css/*"
  ],
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{925b0516-774d-469d-bb0e-2b94f199b29a}"
    }
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_icon": "img/playertube/icon.png"
  }
}