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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}