The Wikipedia Game

Can you make it to Hitler in time?

What is The Wikipedia Game?

The Wikipedia Game is a Chrome extension developed by Sondre Agledahl, and its main feature is "Can you make it to Hitler in time?".

Extension Screenshots

screenshot

Download The Wikipedia Game Extension CRX File

Download The Wikipedia Game extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name The Wikipedia Game The Wikipedia Game
ID eegnphdhmfojbanefhnlipmlljgfoaef
Official URL https://chromewebstore.google.com/detail/the-wikipedia-game/eegnphdhmfojbanefhnlipmlljgfoaef
Description Can you make it to Hitler in time?
File Size 5.54 MB
Installation Count 60
Current Version 1.0
Last Updated 2016-12-11
Publish Date 2016-12-11
Rating 3.00/5 Total 1 Ratings
Developer Sondre Agledahl
Payment Type free
Supported Languages en-GB
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"
    ]
}