Bricks Game for Chrome

Bricks Game for Chrome

You can play the fun Bricks game on your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "cont.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "alarms"
  ],
  "action": {
    "default_icon": {
      "128": "128.png"
    },
    "default_title": "Brick Game"
  },
  "version": "1.1.5",
  "icons": {
    "128": "128.png"
  },
  "host_permissions": [
    "https://*/*"
  ],
  "minimum_chrome_version": "90",
  "web_accessible_resources": [
    {
      "resources": [
        "js/*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "name": "__MSG_appName__"
}