Game-of-Life
Play Conway's Game of life on GitHub contribution board
Что такое Game-of-Life?
Game-of-Life - это расширение Chrome, разработанное yuanchuan, и его основная функция - "Play Conway's Game of life on GitHub contribution board".
Снимки экрана расширения
Скачать файл CRX расширения Game-of-Life
Скачайте файлы расширений Game-of-Life в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Play Conway's Game of life on GitHub contribution board Основная информация о расширении
| Название | |
| ID | bhhddgpklpjchoemcgggncekimleaaok |
| Официальный URL | https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok |
| Описание | Play Conway's Game of life on GitHub contribution board |
| Размер файла | 14.59 KB |
| Количество установок | 103 |
| Текущая Версия | 1.3.7 |
| Последнее Обновление | 2019-05-27 |
| Дата публикации | 2019-05-26 |
| Рейтинг | 3.80/5 Всего 5 оценок |
| Разработчик | yuanchuan |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/yuanchuan/game-of-life |
| URL страницы помощи | https://github.com/yuanchuan/game-of-life |
| Поддерживаемые языки | 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
} | |