Tetrys

Tetrys

Tetrys game in the new window for chromium browsers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Tetrys game in the new window for chromium browsers",
  "background": {
    "service_worker": "js/worker.js"
  },
  "minimum_chrome_version": "99",
  "action": {
    "default_icon": {
      "32": "32.png",
      "128": "128.png"
    },
    "default_title": "Tetrys game"
  },
  "permissions": [
    "storage"
  ],
  "version": "1.2",
  "host_permissions": [
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css.js",
        "css/init.js",
        "css/main.css",
        "js/safe-scripts.js",
        "js/game.js",
        "32.png"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "32": "32.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/safe-scripts.js",
        "js/content.js"
      ]
    }
  ],
  "name": "Tetrys"
}