Snake for Chrome
Chrome's offline snake game
Wat is Snake for Chrome?
Snake for Chrome is een Chrome-extensie ontwikkeld door tamarabilenkotn, en de belangrijkste functie is "Chrome's offline snake game".
Extensie Screenshots
Download het CRX-bestand van de extensie Snake for Chrome
Download Snake for Chrome-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
Snake - a simple game from Chrome offline mode. Press Enter to start the game. Use arrows to change snake direction. Basisinformatie over de Extensie
| Naam | |
| ID | nabjdccbcfponlofkobmigcgfaddnkll |
| Officiële URL | https://chrome.google.com/webstore/detail/snake-for-chrome/nabjdccbcfponlofkobmigcgfaddnkll |
| Beschrijving | Chrome's offline snake game |
| Bestandsgrootte | 69.24 KB |
| Aantal Installaties | 30,416 |
| Huidige Versie | 2.8 |
| Laatst Bijgewerkt | 2023-05-12 |
| Publicatiedatum | 2020-09-26 |
| Beoordeling | 4.45/5 Totaal 22 Beoordelingen |
| Ontwikkelaar | tamarabilenkotn |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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:\/\/*\/*"
]
}
]
} | |