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. -…
O que é Game of Life?
Game of Life é uma extensão do Chrome desenvolvida por notathrowaway688, e sua principal característica é "A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Game of Life
Baixe arquivos de extensão Game of Life no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Game of Life |
ID | gdmhealdhgadiggcdemaddblpbklepal |
URL Oficial | https://chromewebstore.google.com/detail/game-of-life/gdmhealdhgadiggcdemaddblpbklepal |
Descrição | A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -… |
Tamanho do Arquivo | 5.92 KB |
Contagem de Instalações | 391 |
Versão Atual | 1.0 |
Última Atualização | 2020-09-30 |
Data de Publicação | 2020-09-29 |
Classificação | 5.00/5 Total de 7 Avaliações |
Desenvolvedor | notathrowaway688 |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |