Web Client for Rugby Rush - SideGame

Run web client for Rugby Rush just like your favorite mobile games.
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",
  "action": {
    "default_icon": "assets/icons/128.png",
    "default_title": "__MSG_name__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "open-sidebar": {
      "description": "Open Sidebar",
      "suggested_key": {
        "default": "Alt+E",
        "linux": "Alt+E",
        "mac": "Command+E",
        "windows": "Alt+E"
      }
    }
  },
  "default_locale": "en",
  "description": "__MSG_desc__",
  "icons": {
    "32": "assets/icons/32.png",
    "64": "assets/icons/64.png",
    "128": "assets/icons/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_name__",
  "permissions": [
    "storage",
    "sidePanel"
  ],
  "side_panel": {
    "default_path": "content-sidebar.html"
  },
  "version": "1.1.0"
}