Multiplayer Wikigame

Multiplayer Wikigame

Play multiplayer Wikiracing online with your friends, directly from the Wikipedia Page!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Multiplayer Wikigame",
  "version": "1.3.4",
  "description": "Play multiplayer Wikiracing online with your friends, directly from the Wikipedia Page!",
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "32": "images/icon-32.png",
      "128": "images/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.wikipedia.org/wiki/*",
        "https://*.wikipedia.org/w/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.wikipedia.org/wiki/*",
        "https://*.wikipedia.org/w/*"
      ],
      "js": [
        "ctrlf.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "images/header.png",
    "images/icon-32.png"
  ],
  "icons": {
    "32": "images/icon-32.png",
    "128": "images/icon-128.png"
  }
}