Game-of-Life
Play Conway's Game of life on GitHub contribution board
Game-of-Lifeとは何ですか?
Game-of-Lifeはyuanchuanによって開発されたChromeの拡張機能で、その主な機能は「Play Conway's Game of life on GitHub contribution board」です。
拡張機能のスクリーンショット
Game-of-Life拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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
} | |