Examine source code of Odyssey's PBBG.DEV mods

Inspect and view changes in Odyssey's PBBG.DEV mods 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",
  "name": "Odyssey's PBBG.DEV mods",
  "version": "0.1",
  "description": "Unoffical moddifications written by odyssey adding quality of life to the game at PBBG.dev. Join the game discord and say hi.",
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://pbbg.dev/game/exploring"
      ],
      "js": [
        "exploring mod.js"
      ]
    },
    {
      "matches": [
        "https://pbbg.dev/game/merchant"
      ],
      "js": [
        "merchant mod.js"
      ]
    },
    {
      "matches": [
        "https://pbbg.dev/game/exploring"
      ],
      "js": [
        "background mod.js"
      ]
    }
  ]
}