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. -…”。
擴展截圖
下載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 |
ID | gdmhealdhgadiggcdemaddblpbklepal |
官方網址 | 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" } } |