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. -…
Was ist Game of Life?
Game of Life ist eine Chrome-Erweiterung, die von notathrowaway688 entwickelt wurde, und ihr Hauptmerkmal ist "A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -…".
Erweiterungsscreenshots
Game of Life-Erweiterungs-CRX-Datei herunterladen
Laden Sie Game of Life-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gdmhealdhgadiggcdemaddblpbklepal |
| Offizielle URL | https://chromewebstore.google.com/detail/game-of-life/gdmhealdhgadiggcdemaddblpbklepal |
| Beschreibung | A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -… |
| Dateigröße | 5.92 KB |
| Installationsanzahl | 391 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2020-09-30 |
| Veröffentlichungsdatum | 2020-09-29 |
| Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
| Entwickler | notathrowaway688 |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |