Winter Tetris

Classic Tetris game, reminisce about childhood and bring back childhood memories
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "homepage_url": "https://github.com/aiyld",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "system.display"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "content_security_policy": {},
  "version": "1.0.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}