Multiplayer Wikigame

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

Multiplayer Wikigame क्या है?

Multiplayer Wikigame Ahmad Zaky द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Play multiplayer Wikiracing online with your friends, directly from the Wikipedia Page!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Multiplayer Wikigame एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Wikiracing is a game using the online encyclopedia Wikipedia which focuses on traversing links from one page to another. (https://en.wikipedia.org/wiki/Wikiracing).

With this extension, you can play Wikiracing directly from Wikipedia Page together with your friends!

How to play:
To play, you have to open (any) Wikipedia page first (because this extension only has permission for wikipedia, not other sites). Then you can click the extension icon to show popup.

You can play single player (default), or click "Create/join multiplayer room" to play with your friends. After creating a room, you can share the link by clicking "Copy Room Link" on the extension popup, or just copy your url. Note that your friends must install the extension beforehand. If this extension is already installed, then opening any shared room link will prompt you to enter a username, and after that you will join the room.

Happy Wikiracing!

Features:
- Play Wikiracing with the original Wikipedia experience
- Play with your friends by sharing your own room
- Support all 304 languages of Wikipedia
- Custom score metrics! (number of clicks / time / combined!)
- Optional challenging rules! (disable Ctrl+F, disable article preview, ban some articles, and more!)
- And more to come!

Data Usage:
This extension will log the pages you visit for debugging purposes, **only on Wikipedia pages** and **only when you have an active game**. This extension **will do nothing if you don't have any running game** and **does not have any access to sites other than Wikipedia**.

If you are still unsure, (and if you have a little programming experience), you can always review the source code here: https://github.com/azaky/wikigame. It is (and will always be) open source.

Also, any suggestion will be appreciated! Just create new issue on the Github page if you have any issues/feedbacks/feature requests.                    

एक्सटेंशन की मूल जानकारी

नाम Multiplayer Wikigame Multiplayer Wikigame
ID hlgnjjenjinpaiilhmjpejjjphieejdb
आधिकारिक URL https://chromewebstore.google.com/detail/multiplayer-wikigame/hlgnjjenjinpaiilhmjpejjjphieejdb
विवरण Play multiplayer Wikiracing online with your friends, directly from the Wikipedia Page!
फ़ाइल का आकार 233 KB
स्थापना संख्या 1,214
वर्तमान संस्करण 1.3.4
अंतिम अपडेट 2021-03-02
प्रकाशन तिथि 2020-10-17
रेटिंग 3.88/5 कुल 8 रेटिंग्स
डेवलपर Ahmad Zaky
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/azaky/wikigame
सहायता पृष्ठ URL https://github.com/azaky/wikigame/issues/new
समर्थित भाषाएँ en
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"
    }
}