Chess.com analyse at lichess

Chess.com analyse at lichess

Analyse chess.com game at lichess.org for free.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Chess.com analyse at lichess",
  "description": "Analyse chess.com game at lichess.org for free.",
  "homepage_url": "https://github.com/Zeraye/chess-analysis-firefox-extension/",
  "version": "1.7.3",
  "author": "zeraye",
  "icons": {
    "64": "src/icons/addon-icon-64.png"
  },
  "permissions": [
    "https://www.chess.com/*",
    "https://lichess.org/*",
    "tabs"
  ],
  "background": {
    "scripts": [
      "src/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.chess.com/game/*",
        "https://www.chess.com/analysis/game/live/*",
        "https://www.chess.com/analysis/game/daily/*",
        "https://www.chess.com/analysis/game/computer/*"
      ],
      "js": [
        "src/js/createLoading.js"
      ],
      "css": [
        "src/css/createLoading.css"
      ]
    }
  ],
  "page_action": {
    "default_icon": "src/icons/page-action-icon-64.png",
    "default_title": "Analyse game",
    "show_matches": [
      "https://www.chess.com/game/*",
      "https://www.chess.com/analysis/game/live/*",
      "https://www.chess.com/analysis/game/daily/*",
      "https://www.chess.com/analysis/game/computer/*"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{0e0d8291-db78-4b15-91cb-7f8b0084cc9a}"
    }
  }
}