Flappy Octocat

a chrome extension to play a flappy bird like game on github contributions board!

What is Flappy Octocat?

Flappy Octocat is a Chrome extension developed by chxj1992, and its main feature is "a chrome extension to play a flappy bird like game on github contributions board!".

Extension Screenshots

screenshot

Download Flappy Octocat Extension CRX File

Download Flappy Octocat extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        a chrome extension to play a flappy bird like game on github contributions board!                    

Extension Basic Information

Name Flappy Octocat Flappy Octocat
ID jjjhhlomhbdmnfgaccmddhmjfeekjlbl
Official URL https://chrome.google.com/webstore/detail/flappy-octocat/jjjhhlomhbdmnfgaccmddhmjfeekjlbl
Description a chrome extension to play a flappy bird like game on github contributions board!
File Size 749 KB
Installation Count 52
Current Version 1.0.3
Last Updated 2020-01-07
Publish Date 2020-01-07
Rating 5.00/5 Total 2 Ratings
Developer chxj1992
Payment Type free
Extension Website https://github.com/chxj1992/flappy-octocat
Supported Languages 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\/*"
    ]
}