Game of Life

A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -…

什么是Game of Life?

Game of Life是由notathrowaway688开发的Chrome扩展程序,该扩展的主要功能是“A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -…”。

扩展截图

screenshot

下载Game of Life扩展crx文件

下载Game of Life扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A classic version of Conway's Game of Life.

Controls:
- Left click on the grid to place cells.
- Space to start a simulation.
- Right arrow key to step through the simulation.

Rule for Game of Life: 
- Any live cell with fewer than two live neighbours dies, as if by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

See Wiki: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life.                    

扩展基本信息

名称 Game of Life Game of Life
ID gdmhealdhgadiggcdemaddblpbklepal
官方URL https://chromewebstore.google.com/detail/game-of-life/gdmhealdhgadiggcdemaddblpbklepal
简介 A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -…
文件大小 5.92 KB
安装次数 391
当前版本 1.0
更新时间 2020-09-30
上架时间 2020-09-29
评分 5.00/5 共7次评分
开发者 notathrowaway688
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Game of Life",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icons\/defaultIcon.png",
        "default_popup": "index.html",
        "default_title": "Game of Life"
    },
    "icons": {
        "128": "icons\/icon.png"
    }
}