Examine source code of Repertoire Wizard

Inspect and view changes in Repertoire Wizard 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Repertoire Wizard",
  "version": "1.4.1",
  "description": "Brings together the best of Chessable and Lichess",
  "icons": {
    "16": "assets/wizardpawn16.png",
    "48": "assets/wizardpawn48.png",
    "128": "assets/wizardpawn128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/wizardpawn16.png",
      "48": "assets/wizardpawn48.png",
      "128": "assets/wizardpawn128.png"
    },
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.chessable.com/*"
      ],
      "js": [
        "libs/browser-polyfill.js",
        "global.js",
        "scrape.js"
      ]
    },
    {
      "matches": [
        "https://www.chessable.com/explore/*"
      ],
      "js": [
        "libs/browser-polyfill.js",
        "dropdownFilter.js"
      ]
    },
    {
      "matches": [
        "https://www.chessable.com/analysis/*"
      ],
      "js": [
        "analysisReroute.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://lichess.org/*"
      ],
      "js": [
        "libs/browser-polyfill.js",
        "moveHighlighting.js"
      ]
    },
    {
      "matches": [
        "https://lichess.org/analysis/*"
      ],
      "js": [
        "libs/browser-polyfill.js",
        "positionSelector.js"
      ]
    }
  ]
}