GitHub Minesweeper

GitHub Minesweeper

Minesweeper game on GitHub profile page using calendar contributions chart

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}