Flappy Octocat
a chrome extension to play a flappy bird like game on github contributions board!
Wat is Flappy Octocat?
Flappy Octocat is een Chrome-extensie ontwikkeld door chxj1992, en de belangrijkste functie is "a chrome extension to play a flappy bird like game on github contributions board!".
Extensie Screenshots
Download het CRX-bestand van de extensie Flappy Octocat
Download Flappy Octocat-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
a chrome extension to play a flappy bird like game on github contributions board!
Basisinformatie over de Extensie
Naam | |
ID | jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
Officiële URL | https://chrome.google.com/webstore/detail/flappy-octocat/jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
Beschrijving | a chrome extension to play a flappy bird like game on github contributions board! |
Bestandsgrootte | 749 KB |
Aantal Installaties | 52 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2020-01-07 |
Publicatiedatum | 2020-01-07 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | chxj1992 |
Betalingswijze | free |
Extensiewebsite | https://github.com/chxj1992/flappy-octocat |
Ondersteunde Talen | 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\/*" ] } |