The Wikipedia Game

Can you make it to Hitler in time?

Vad är The Wikipedia Game?

The Wikipedia Game är en Chrome-tillägg utvecklad av Sondre Agledahl, och dess huvudfunktion är "Can you make it to Hitler in time?".

Tilläggsskärmbilder

screenshot

Ladda ner The Wikipedia Game-förlängningens CRX-fil

Ladda ner The Wikipedia Game-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                                            

Grundläggande Information om Tillägg

Namn The Wikipedia Game The Wikipedia Game
ID eegnphdhmfojbanefhnlipmlljgfoaef
Officiell webbadress https://chromewebstore.google.com/detail/the-wikipedia-game/eegnphdhmfojbanefhnlipmlljgfoaef
Beskrivning Can you make it to Hitler in time?
Filstorlek 5.54 MB
Antal Installationer 60
Aktuell Version 1.0
Senast Uppdaterad 2016-12-11
Publiceringsdatum 2016-12-11
Betyg 3.00/5 Totalt 1 Betyg
Utvecklare Sondre Agledahl
Betalningssätt free
Stödda Språk 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"
    ]
}