Classic Games - Play2Day

Classic Games - Play2Day

Play your favorite classic games on your Google Chrome! Free online games on desktop. 2048, Flappy Bird, Doodle Jump, Bomberman.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.1",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "storage",
    "sidePanel"
  ],
  "side_panel": {
    "default_path": "sidebar.html"
  },
  "action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "options_page": "./options.html",
  "commands": {
    "_execute_action": {}
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "assets/*.svg",
        "assets/*.png",
        "assets/*.css",
        "assets/*.otf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}