Flappy Octocat
a chrome extension to play a flappy bird like game on github contributions board!
Was ist Flappy Octocat?
Flappy Octocat ist eine Chrome-Erweiterung, die von chxj1992 entwickelt wurde, und ihr Hauptmerkmal ist "a chrome extension to play a flappy bird like game on github contributions board!".
Erweiterungsscreenshots
Flappy Octocat-Erweiterungs-CRX-Datei herunterladen
Laden Sie Flappy Octocat-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
a chrome extension to play a flappy bird like game on github contributions board! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
| Offizielle URL | https://chrome.google.com/webstore/detail/flappy-octocat/jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
| Beschreibung | a chrome extension to play a flappy bird like game on github contributions board! |
| Dateigröße | 749 KB |
| Installationsanzahl | 52 |
| Aktuelle Version | 1.0.3 |
| Letztes Update | 2020-01-07 |
| Veröffentlichungsdatum | 2020-01-07 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | chxj1992 |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/chxj1992/flappy-octocat |
| Unterstützte Sprachen | 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\/*"
]
} | |