Connect Four

Play a quick game of Connect Four with your pal. No need to open up a whole other website just to play Connect Four. With this…

Co to jest Connect Four?

Connect Four to rozszerzenie Chrome opracowane przez khanuku11, a jego główną funkcją jest „Play a quick game of Connect Four with your pal. No need to open up a whole other website just to play Connect Four. With this…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Connect Four

Pobierz pliki rozszerzeń Connect Four 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

                        Play a quick game of Connect Four with your pal. No need to open up a whole other website just to play Connect Four. With this chrome extension, simply click on the chrome extension icon and a popup window will display the game. This chrome extension is meant to be played on the same device. To launch the app, press the icon and the game will start. One player will be red and the other player will be blue. The color of the boarder on the connect four board indicates which players turn it is. If a player has 4 consecutive pieces in a row, or in a column, or diagonally, then those pieces will be highlighted in green as well as the player icon found in the bottom indicating the player won. To replay the game, simply reopen the chrome extension. 

- If currently in a game, DO NOT INTERACT WITH ANYTHING ELSE OTHER THAN THE CHROME EXTENSION. If you click outside the connect four game, then the chrome extension will close and will have to play a new game. 

(This was meant to be a side project, but feel free to provide some feedback as to how I can improve this extension. Would be greatly appreciated!)

Enjoy the game!                    

Podstawowe informacje o rozszerzeniu

Nazwa Connect Four Connect Four
ID ahaomenoemkdoibmfhljpmlobeameaei
Oficjalny URL https://chromewebstore.google.com/detail/connect-four/ahaomenoemkdoibmfhljpmlobeameaei
Opis Play a quick game of Connect Four with your pal. No need to open up a whole other website just to play Connect Four. With this…
Rozmiar pliku 7.26 KB
Liczba instalacji 96
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-09-20
Data Publikacji 2021-09-20
Ocena 4.25/5 Łącznie 4 Oceny
Deweloper khanuku11
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Connect Four",
    "version": "1.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "connect_four"
    }
}