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…

O que é Connect Four?

Connect Four é uma extensão do Chrome desenvolvida por khanuku11, e sua principal característica é "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…".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Connect Four

Baixe arquivos de extensão Connect Four no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Connect Four Connect Four
ID ahaomenoemkdoibmfhljpmlobeameaei
URL Oficial https://chromewebstore.google.com/detail/connect-four/ahaomenoemkdoibmfhljpmlobeameaei
Descrição 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…
Tamanho do Arquivo 7.26 KB
Contagem de Instalações 96
Versão Atual 1.0
Última Atualização 2021-09-20
Data de Publicação 2021-09-20
Classificação 4.25/5 Total de 4 Avaliações
Desenvolvedor khanuku11
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}