The Wikipedia Game

The Wikipedia Game

Can you make it to Hitler in time?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Wikipedia Game",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Can you make it to Hitler in time?",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://en.wikipedia.org/*"
      ],
      "js": [
        "jquery-2.2.4.min.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "index.html"
  },
  "permissions": [
    "https://en.wikipedia.org/"
  ],
  "web_accessible_resources": [
    "icon.png",
    "lose_sound.mp3",
    "win_sound.wav"
  ]
}