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
Eメール [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"
    }
}