Flappy Octocat
a chrome extension to play a flappy bird like game on github contributions board!
Qu'est-ce que Flappy Octocat ?
Flappy Octocat est une extension Chrome développée par chxj1992, et sa fonction principale est "a chrome extension to play a flappy bird like game on github contributions board!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Flappy Octocat
Téléchargez les fichiers d'extension Flappy Octocat au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
a chrome extension to play a flappy bird like game on github contributions board!
Informations de Base sur l'Extension
Nom | |
ID | jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
URL Officiel | https://chrome.google.com/webstore/detail/flappy-octocat/jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
Description | a chrome extension to play a flappy bird like game on github contributions board! |
Taille du Fichier | 749 KB |
Nombre d'Installations | 52 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2020-01-07 |
Date de Publication | 2020-01-07 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | chxj1992 |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/chxj1992/flappy-octocat |
Langues Prises en Charge | 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\/*" ] } |