Game-of-Life
Play Conway's Game of life on GitHub contribution board
Cos'è Game-of-Life?
Game-of-Life è un'estensione di Chrome sviluppata da yuanchuan, e la sua funzione principale è "Play Conway's Game of life on GitHub contribution board".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Game-of-Life
Scarica i file di estensione Game-of-Life in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Play Conway's Game of life on GitHub contribution board
Informazioni di Base sull'Estensione
Nome | Game-of-Life |
ID | bhhddgpklpjchoemcgggncekimleaaok |
URL Ufficiale | https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok |
Descrizione | Play Conway's Game of life on GitHub contribution board |
Dimensione del File | 14.59 KB |
Conteggio Installazioni | 103 |
Versione Corrente | 1.3.7 |
Ultimo Aggiornamento | 2019-05-27 |
Data di Pubblicazione | 2019-05-26 |
Valutazione | 3.80/5 Totale 5 Valutazioni |
Sviluppatore | yuanchuan |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/yuanchuan/game-of-life |
URL della Pagina di Aiuto | https://github.com/yuanchuan/game-of-life |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Game-of-Life", "version": "1.3.7", "description": "Play Conway's Game of life on GitHub contribution board", "icons": { "16": "icons\/logo48.png", "48": "icons\/logo128.png", "128": "icons\/logo256.png", "256": "icons\/logo256.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "exclude_matches": [ "https:\/\/github.com\/new\/*", "https:\/\/github.com\/settings\/*", "https:\/\/github.com\/pricing\/*", "https:\/\/github.com\/blog\/*", "https:\/\/github.com\/contact\/*", "https:\/\/github.com\/site\/*", "https:\/\/github.com\/about\/*" ], "css": [ "style.css" ], "js": [ "index.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |