500 piece puzzles, daily hyper casual game

500 piece puzzles, daily hyper casual game

Huge collection of free jigsaw puzzles hyper casual games. Solve your favorites puzzles while browsing the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "128": "images/icon.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "Play!"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "css": [
        "css/content.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "<all_urls>",
    "storage",
    "alarms"
  ],
  "web_accessible_resources": [
    "*"
  ],
  "manifest_version": 2,
  "version": "1.1.0.0",
  "update_url": "https://clients2.google.com/service/update2/crx"
}