Snake

Play Snake!

Vad är Snake?

Snake är en Chrome-tillägg utvecklad av philip s, och dess huvudfunktion är "Play Snake!".

Tilläggsskärmbilder

screenshot

Ladda ner Snake-förlängningens CRX-fil

Ladda ner Snake-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Snake Snake
ID goicnfoaggodccboajidgdckohdpfmib
Officiell webbadress https://chromewebstore.google.com/detail/snake/goicnfoaggodccboajidgdckohdpfmib
Beskrivning Play Snake!
Filstorlek 24.14 KB
Antal Installationer 444
Aktuell Version 1.0
Senast Uppdaterad 2018-07-29
Publiceringsdatum 2018-07-28
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare philip s
Betalningssätt free
Stödda Språk 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"
    }
}