Bobby

Bobby

Shows users the best moves in a chess position

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bobby",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Shows users the best moves in a chess position",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.chess.com/*"
      ],
      "js": [
        "js/content.js",
        "js/intercept.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_title": "Bobby"
  },
  "icons": {
    "16": "png/bobby16.png",
    "48": "png/bobby48.png",
    "128": "png/bobby128.png"
  },
  "web_accessible_resources": [
    "js/stockfish/stockfish.js",
    "js/background.js",
    "js/intercept.js"
  ]
}