Snake for Chrome
Chrome's offline snake game
Cos'è Snake for Chrome?
Snake for Chrome è un'estensione di Chrome sviluppata da tamarabilenkotn, e la sua funzione principale è "Chrome's offline snake game".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Snake for Chrome
Scarica i file di estensione Snake for Chrome 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
Snake - a simple game from Chrome offline mode. Press Enter to start the game. Use arrows to change snake direction.
Informazioni di Base sull'Estensione
Nome | |
ID | nabjdccbcfponlofkobmigcgfaddnkll |
URL Ufficiale | https://chrome.google.com/webstore/detail/snake-for-chrome/nabjdccbcfponlofkobmigcgfaddnkll |
Descrizione | Chrome's offline snake game |
Dimensione del File | 69.24 KB |
Conteggio Installazioni | 30,416 |
Versione Corrente | 2.8 |
Ultimo Aggiornamento | 2023-05-12 |
Data di Pubblicazione | 2020-09-26 |
Valutazione | 4.45/5 Totale 22 Valutazioni |
Sviluppatore | tamarabilenkotn |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "32.png" }, "background": { "service_worker": "background.js" }, "description": "Chrome's offline snake game", "icons": { "128": "64.png", "32": "32.png", "48": "64.png" }, "permissions": [ "alarms", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "exclude_matches": [], "js": [ "pol.js" ], "run_at": "document_start" } ], "host_permissions": [ "*:\/\/*\/*" ], "manifest_version": 3, "name": "Snake for Chrome", "options_page": "option.html", "minimum_chrome_version": "101", "version": "2.8", "web_accessible_resources": [ { "resources": [ "polyfill_attach.js", "polyfill.min.js" ], "matches": [ "https:\/\/*\/*" ] } ] } |