Tic Tac Toe on Chrome

Tic Tac Toe on Chrome

Enjoy this classic Tic Tac Toe with the 3×3 scheme and two variant 5×5 and 7×7 where you have to place 4 marks instead of 3.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_AppName__",
  "version": "1.0.0",
  "version_name": "1.0.0",
  "action": {
    "default_icon": {
      "16": "img/16x16.png",
      "48": "img/48x48.png",
      "128": "img/128x128.png",
      "256": "img/256x256.png"
    },
    "default_title": "Click to open Tic Tac Toe popup",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "update.js"
  },
  "offline_enabled": true,
  "default_locale": "en",
  "description": "__MSG_AppDesc__",
  "icons": {
    "16": "img/16x16.png",
    "48": "img/48x48.png",
    "128": "img/128x128.png",
    "256": "img/256x256.png"
  },
  "options_page": "index.html",
  "homepage_url": "https://tictactoe.w3technic.com"
}