Game-of-Life

Play Conway's Game of life on GitHub contribution board

What is Game-of-Life?

Game-of-Life is a Chrome extension developed by yuanchuan, and its main feature is "Play Conway's Game of life on GitHub contribution board".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Game-of-Life Extension CRX File

Download Game-of-Life extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Play Conway's Game of life on GitHub contribution board                    

Extension Basic Information

Name Game-of-Life Game-of-Life
ID bhhddgpklpjchoemcgggncekimleaaok
Official URL https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok
Description Play Conway's Game of life on GitHub contribution board
File Size 14.59 KB
Installation Count 103
Current Version 1.3.7
Last Updated 2019-05-27
Publish Date 2019-05-26
Rating 3.80/5 Total 5 Ratings
Developer yuanchuan
Email [email protected]
Payment Type free
Extension Website https://github.com/yuanchuan/game-of-life
Help Page URL https://github.com/yuanchuan/game-of-life
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Game-of-Life",
    "version": "1.3.7",
    "description": "Play Conway's Game of life on GitHub contribution board",
    "icons": {
        "16": "icons\/logo48.png",
        "48": "icons\/logo128.png",
        "128": "icons\/logo256.png",
        "256": "icons\/logo256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/github.com\/new\/*",
                "https:\/\/github.com\/settings\/*",
                "https:\/\/github.com\/pricing\/*",
                "https:\/\/github.com\/blog\/*",
                "https:\/\/github.com\/contact\/*",
                "https:\/\/github.com\/site\/*",
                "https:\/\/github.com\/about\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}