Chess.com to Lichess Import

Chess.com to Lichess Import

Allows users to import Chess.com games into Lichess with one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chess.com to Lichess Import",
  "description": "Allows users to import Chess.com games into Lichess with one click",
  "version": "0.80",
  "icons": {
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "action": {
    "default_popup": "./donation.html"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "https://lichess.org/*"
  ],
  "background": {
    "service_worker": "./scripts/background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "table.html",
        "scripts/*",
        "styles/*"
      ],
      "matches": [
        "https://www.chess.com/*",
        "https://lichess.org/*"
      ],
      "use_dyanmics_url": true
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.chess.com/*",
        "https://lichess.org/*"
      ],
      "js": [
        "./scripts/ratingWindow.js",
        "./scripts/injectHtmlButtonToPage.js",
        "./scripts/lichessPressAnalysis.js"
      ]
    }
  ],
  "manifest_version": 3
}