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\/*" ] } |