GitHub Minesweeper

Minesweeper game on GitHub profile page using calendar contributions chart

什麼是GitHub Minesweeper?

GitHub Minesweeper是由Borja Gonzalez開發的Chrome擴展程式,該擴展的主要功能是“Minesweeper game on GitHub profile page using calendar contributions chart”。

擴展截圖

screenshot
screenshot

下載GitHub Minesweeper擴展crx文件

下載GitHub Minesweeper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}