2048

Play 2048 anytime. Join the numbers and get to the 2048 tile!

Was ist 2048?

2048 ist eine Chrome-Erweiterung, die von 2048 entwickelt wurde, und ihr Hauptmerkmal ist "Play 2048 anytime. Join the numbers and get to the 2048 tile!".

Erweiterungsscreenshots

screenshot

2048-Erweiterungs-CRX-Datei herunterladen

Laden Sie 2048-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension adds 2048 game into your Chrome. Clicking on the icon will pop-up the game immediately.

HOW TO PLAY: Use your arrow keys to move the tiles. When two tiles with the same number touch, they merge into one!

IF ARROW KEYS ARE NOT WORKING, JUST CLICK INTO THE GAME WINDOW

This is not a link to website, you can play the 2048 game anytime, even when you are offline!

For more information visit the official 2048 website at http://gabrielecirulli.github.io/2048/

2048 was created by Gabriele Cirulli, visit his website at http://gabrielecirulli.com

If you are developer and want to improve the game, you can do it at https://github.com/gabrielecirulli/2048                    

Grundlegende Informationen zur Erweiterung

Name 2048 2048
ID klkgibeelchkifaeamopaheinfnfleaj
Offizielle URL https://chromewebstore.google.com/detail/2048/klkgibeelchkifaeamopaheinfnfleaj
Beschreibung Play 2048 anytime. Join the numbers and get to the 2048 tile!
Dateigröße 242 KB
Installationsanzahl 1,083
Aktuelle Version 25
Letztes Update 2019-04-11
Veröffentlichungsdatum 2019-04-11
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler 2048
Zahlungsart free
Erweiterungswebsite https://github.com/gabrielecirulli/2048
Hilfeseite URL https://github.com/gabrielecirulli/2048/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "2048",
    "description": "Play 2048 anytime. Join the numbers and get to the 2048 tile!",
    "version": "25",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "background"
    ],
    "page_action": {
        "default_icon": "images\/2048-icon.png",
        "default_popup": "game\/index.html"
    },
    "web_accessible_resources": [
        "_generated_background_page.html"
    ],
    "icons": {
        "16": "images\/2048-icon.png",
        "48": "images\/2048-icon.png",
        "128": "images\/2048-icon.png"
    }
}