Game-of-Life
Play Conway's Game of life on GitHub contribution board
Apa itu Game-of-Life?
Game-of-Life adalah ekstensi Chrome yang dikembangkan oleh yuanchuan, dan fitur utamanya adalah "Play Conway's Game of life on GitHub contribution board".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Game-of-Life
Unduh file ekstensi Game-of-Life dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Play Conway's Game of life on GitHub contribution board
Informasi Dasar Ekstensi
Nama | Game-of-Life |
ID | bhhddgpklpjchoemcgggncekimleaaok |
URL Resmi | https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok |
Deskripsi | Play Conway's Game of life on GitHub contribution board |
Ukuran File | 14.59 KB |
Jumlah Instalasi | 103 |
Versi Saat Ini | 1.3.7 |
Terakhir Diperbarui | 2019-05-27 |
Tanggal Publikasi | 2019-05-26 |
Penilaian | 3.80/5 Total 5 Penilaian |
Pengembang | yuanchuan |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/yuanchuan/game-of-life |
URL Halaman Bantuan | https://github.com/yuanchuan/game-of-life |
Bahasa yang Didukung | 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 } |