Chessconnect

Chessconnect

Connects smart chessboards of various brands to either chess.com or lichess.org.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "3.4.11",
  "default_locale": "en",
  "icons": {
    "128": "res/icon128up.png"
  },
  "action": {
    "default_icon": "res/icon128up.png",
    "default_popup": "scripts/options/optiondlg.html",
    "default_title": "Chessconnect"
  },
  "content_scripts": [
    {
      "js": [
        "dist/chesscomcontent.js"
      ],
      "matches": [
        "https://www.chess.com/*"
      ],
      "world": "MAIN",
      "run_at": "document_idle"
    },
    {
      "js": [
        "dist/lichesscontent.js"
      ],
      "matches": [
        "https://lichess.org/*"
      ],
      "world": "MAIN",
      "run_at": "document_idle"
    },
    {
      "js": [
        "dist/chessconnectcontent.js"
      ],
      "matches": [
        "https://chessconnect.de/config-*"
      ],
      "world": "MAIN",
      "run_at": "document_idle"
    },
    {
      "js": [
        "dist/background.js"
      ],
      "matches": [
        "https://www.chess.com/*",
        "https://lichess.org/*",
        "https://chessconnect.de/config-*"
      ],
      "world": "ISOLATED",
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "dist/serviceworker.js"
  },
  "permissions": [
    "storage",
    "offscreen"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "res/beep.mp3",
        "res/knock.mp3",
        "res/pling.mp3",
        "res/icon128up.png",
        "res/icon128down.png",
        "res/icon128upred.png",
        "res/icon128downyellow.png",
        "res/icon128upgreen.png",
        "res/yesnodialog.html",
        "res/offscreen.html",
        "dist/offscreen.js"
      ],
      "matches": [
        "https://www.chess.com/*",
        "https://lichess.org/*"
      ]
    }
  ],
  "options_ui": {
    "page": "scripts/options/optiondlg.html",
    "open_in_tab": true
  }
}