GitHub Minesweeper

Minesweeper game on GitHub profile page using calendar contributions chart

GitHub Minesweeper क्या है?

GitHub Minesweeper Borja Gonzalez द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Minesweeper game on GitHub profile page using calendar contributions chart"।

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

screenshot
screenshot

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

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

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

                        GitHub Minesweeper extension lets users play the classic minesweeper game directly on GitHub contributions calendar grid.

After installing it, you will see main game controls just above the contributions grid. Choose a number of mines and click the "Play" button to start a new game and the contributions grid will become a minesweeper board.

Rules of the game are the classic ones: each cell could have a mine or not, if you click a cell that contains a mine, the game is over, otherwise, the cell will reveal how many adjacent cells contain mines. Using these clues, the goal is to reveal all non-mined cells.

Of course, you can hide the game board anytime to be able to keep using GitHub profile pages as usual by clicking the "eye" button.

Left mouse click to reveal a cell content and right mouse click to mark a cell as mined.

Minesweeper board will always be a 53x7 cells grid as GitHub contributions original panel.

There are 3 difficulty levels with different numbers of mines: 30 (easy), 50 (medium), and 80 (hard).

Enjoy the game!                    

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

नाम GitHub Minesweeper GitHub Minesweeper
ID digafonkkgaabmggclpbabfmfnambeia
आधिकारिक URL https://chromewebstore.google.com/detail/github-minesweeper/digafonkkgaabmggclpbabfmfnambeia
विवरण Minesweeper game on GitHub profile page using calendar contributions chart
फ़ाइल का आकार 13.37 KB
स्थापना संख्या 32
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2021-10-04
प्रकाशन तिथि 2021-09-27
रेटिंग 5.00/5 कुल 8 रेटिंग्स
डेवलपर Borja Gonzalez
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/bgonp/chrome-github-mines#readme
सहायता पृष्ठ URL https://github.com/bgonp/chrome-github-mines/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub Minesweeper",
    "version": "1.0.1",
    "homepage_url": "https:\/\/github.com\/bgonp\/chrome-github-mines#readme",
    "description": "Minesweeper game on GitHub profile page using calendar contributions chart",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "index.css"
            ]
        }
    ]
}