GitHub Minesweeper

Minesweeper game on GitHub profile page using calendar contributions chart

O que é GitHub Minesweeper?

GitHub Minesweeper é uma extensão do Chrome desenvolvida por Borja Gonzalez, e sua principal característica é "Minesweeper game on GitHub profile page using calendar contributions chart".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GitHub Minesweeper

Baixe arquivos de extensão GitHub Minesweeper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome GitHub Minesweeper GitHub Minesweeper
ID digafonkkgaabmggclpbabfmfnambeia
URL Oficial https://chromewebstore.google.com/detail/github-minesweeper/digafonkkgaabmggclpbabfmfnambeia
Descrição Minesweeper game on GitHub profile page using calendar contributions chart
Tamanho do Arquivo 13.37 KB
Contagem de Instalações 32
Versão Atual 1.0.1
Última Atualização 2021-10-04
Data de Publicação 2021-09-27
Classificação 5.00/5 Total de 8 Avaliações
Desenvolvedor Borja Gonzalez
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/bgonp/chrome-github-mines#readme
URL da Página de Ajuda https://github.com/bgonp/chrome-github-mines/issues
Idiomas Suportados 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"
            ]
        }
    ]
}