Web Go Board

Web Go Board

Uses HTML5 to edit SGF files directly in the browser. Pls report issues to https://github.com/IlyaKirillov/GoProject/issues

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "page": "fileHandler.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "description": "Uses HTML5 to edit SGF files directly in the browser. Pls report issues to https://github.com/IlyaKirillov/GoProject/issues",
  "browser_action": {
    "default_icon": {
      "19": "content/icon19.png",
      "38": "content/icon38.png"
    },
    "default_title": "Web Go Board"
  },
  "file_browser_handlers": [
    {
      "default_title": "Open with Web Go Board",
      "file_filters": [
        "filesystem:*.sgf",
        "filesystem:*.gib",
        "filesystem:*.ngf"
      ],
      "id": "open-in-WebGoBoard"
    }
  ],
  "incognito": "split",
  "mime_types": [
    "application/x-go-sgf"
  ],
  "name": "Web Go Board",
  "version": "0.10.12",
  "permissions": [
    "fileBrowserHandler",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "getFrameId",
    "content/editor.html",
    "http:/*",
    "https:/*",
    "ftp:/*",
    "file:/*",
    "chrome-extension:/*",
    "filesystem:/*",
    "drive:*"
  ]
}