Flappy Octocat
a chrome extension to play a flappy bird like game on github contributions board!
Flappy Octocatとは何ですか?
Flappy Octocatはchxj1992によって開発されたChromeの拡張機能で、その主な機能は「a chrome extension to play a flappy bird like game on github contributions board!」です。
拡張機能のスクリーンショット
Flappy Octocat拡張機能のCRXファイルをダウンロード
Flappy Octocat拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
a chrome extension to play a flappy bird like game on github contributions board!
拡張機能の基本情報
名前 | |
ID | jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
公式URL | https://chrome.google.com/webstore/detail/flappy-octocat/jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
説明 | a chrome extension to play a flappy bird like game on github contributions board! |
ファイルサイズ | 749 KB |
インストール数 | 52 |
現在のバージョン | 1.0.3 |
最終更新日 | 2020-01-07 |
公開日 | 2020-01-07 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | chxj1992 |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/chxj1992/flappy-octocat |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Flappy Octocat", "description": "a chrome extension to play a flappy bird like game on github contributions board!", "version": "1.0.3", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "page_action": { "default_icon": "icons\/icon-48.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "style.css" ], "js": [ "contentscripts\/game.js", "contentscripts\/board.js", "contentscripts\/controls.js", "contentscripts\/button.js" ] } ], "permissions": [ "tabs", "https:\/\/github.com\/*" ] } |