2048

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

Co to jest 2048?

2048 to rozszerzenie Chrome opracowane przez 2048, a jego główną funkcją jest „Play 2048 anytime. Join the numbers and get to the 2048 tile!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia 2048

Pobierz pliki rozszerzeń 2048 w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa 2048 2048
ID klkgibeelchkifaeamopaheinfnfleaj
Oficjalny URL https://chromewebstore.google.com/detail/2048/klkgibeelchkifaeamopaheinfnfleaj
Opis Play 2048 anytime. Join the numbers and get to the 2048 tile!
Rozmiar pliku 242 KB
Liczba instalacji 1,083
Aktualna Wersja 25
Ostatnia Aktualizacja 2019-04-11
Data Publikacji 2019-04-11
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper 2048
Typ Płatności free
Strona Rozszerzenia https://github.com/gabrielecirulli/2048
Adres URL Strony Pomocy https://github.com/gabrielecirulli/2048/issues
Obsługiwane Języki 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"
    }
}