Examine source code of Bingosync Counters

Inspect and view changes in Bingosync Counters 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": "Bingosync Counters",
  "version": "1.1.0",
  "manifest_version": 3,
  "description": "A simple extension that adds persistent counters to Bingosync squares",
  "icons": {
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "https://bingosync.com/room/*"
  ],
  "background": {
    "service_worker": "src/bg/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bingosync.com/room/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://bingosync.com/room/*"
      ],
      "js": [
        "js/jquery/jquery-3.6.0.min.js",
        "src/inject/inject.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "src/options/options.html",
    "open_in_tab": false
  }
}