Game-of-Life
Play Conway's Game of life on GitHub contribution board
Co to jest Game-of-Life?
Game-of-Life to rozszerzenie Chrome opracowane przez yuanchuan, a jego główną funkcją jest „Play Conway's Game of life on GitHub contribution board”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Game-of-Life
Pobierz pliki rozszerzeń Game-of-Life w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Play Conway's Game of life on GitHub contribution board Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bhhddgpklpjchoemcgggncekimleaaok |
| Oficjalny URL | https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok |
| Opis | Play Conway's Game of life on GitHub contribution board |
| Rozmiar pliku | 14.59 KB |
| Liczba instalacji | 103 |
| Aktualna Wersja | 1.3.7 |
| Ostatnia Aktualizacja | 2019-05-27 |
| Data Publikacji | 2019-05-26 |
| Ocena | 3.80/5 Łącznie 5 Oceny |
| Deweloper | yuanchuan |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/yuanchuan/game-of-life |
| Adres URL Strony Pomocy | https://github.com/yuanchuan/game-of-life |
| Obsługiwane Języki | 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
} | |