Chess.com Analysis at Lichess

Chess.com Analysis at Lichess

Opens PGN of a game from chess.com or chessgames.com in lichess.org analysis

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Chess.com Analysis at Lichess",
  "version": "4.0.3",
  "manifest_version": 3,
  "description": "Opens PGN of a game from chess.com or chessgames.com in lichess.org analysis",
  "homepage_url": "http://www.zerosharp.com",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "16": "icons/knight16.png",
    "32": "icons/knight32.png",
    "64": "icons/knight64.png",
    "128": "icons/knight128.png",
    "256": "icons/knight256.png",
    "512": "icons/knight512.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "src/bg/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-3.5.1.min.js",
        "src/bg/analysis.js"
      ],
      "matches": [
        "https://*.lichess.org/paste"
      ]
    },
    {
      "css": [
        "css/getpgn.css"
      ],
      "js": [
        "js/jquery-3.5.1.min.js",
        "src/bg/getpgn.js"
      ],
      "matches": [
        "https://www.chess.com/live*",
        "https://www.chess.com/play/computer",
        "https://www.chess.com/live/game/*",
        "https://www.chess.com/game/live/*",
        "https://www.chess.com/analysis/game/live/*",
        "https://www.chess.com/game/daily/*",
        "https://www.chess.com/game/computer/*",
        "https://www.chess.com/events/*/*",
        "https://www.chess.com/play/online",
        "https://www.chessgames.com/perl/chessgame*",
        "https://chessgames.com/perl/chessgame*",
        "https://chess-db.com/public/game.jsp*",
        "https://chesstempo.com/gamedb/*/*",
        "https://old.chesstempo.com/gamedb/*/*",
        "https://old.chesstempo.com/game-database.html"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/knight16.png",
      "32": "icons/knight32.png",
      "64": "icons/knight64.png",
      "128": "icons/knight128.png",
      "256": "icons/knight256.png",
      "512": "icons/knight512.png"
    }
  },
  "permissions": [
    "activeTab"
  ]
}