Snake
Play Snake!
Cos'è Snake?
Snake è un'estensione di Chrome sviluppata da philip s, e la sua funzione principale è "Play Snake!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Snake
Scarica i file di estensione Snake in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Play the classic snake game in a Google Chrome popup. Select a difficulty and use arrow keys to control. Control the snake to eat the food and grow, but be careful not to eat yourself or touch the wall.
Informazioni di Base sull'Estensione
Nome | Snake |
ID | goicnfoaggodccboajidgdckohdpfmib |
URL Ufficiale | https://chromewebstore.google.com/detail/snake/goicnfoaggodccboajidgdckohdpfmib |
Descrizione | Play Snake! |
Dimensione del File | 24.14 KB |
Conteggio Installazioni | 444 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2018-07-29 |
Data di Pubblicazione | 2018-07-28 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | philip s |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Snake", "version": "1.0", "description": "Play Snake!", "manifest_version": 2, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Snake!", "default_popup": "popup.html" }, "icons": { "16": "s16.png", "32": "s32.png", "48": "s48.png", "64": "s64.png", "128": "s128.png" } } |