Inspect and view changes in Snake Game source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Snake Game",
"version": "1.0",
"description": "A simple snake game, currently in Full Release 1.0. High score saves!! Made by a person who can code much better games.",
"background": {
"service_worker": "Functions/Background.js"
},
"action": {
"default_popup": "Functions/Index.html",
"default_icon": {
"16": "Icons/16SnakeIcon.png",
"48": "Icons/48SnakeIcon.png",
"128": "Icons/128SnakeIcon.png"
}
},
"icons": {
"16": "Icons/16SnakeIcon.png",
"48": "Icons/48SnakeIcon.png",
"128": "Icons/128SnakeIcon.png"
},
"permissions": [
"storage"
]
}