Baby Duck

Baby Duck

Catch candy with a baby duck. Can't be cuter :)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "name": "Baby Duck",
  "description": "Catch candy with a baby duck. Can't be cuter :)",
  "version": "1.1.0",
  "icons": {
    "128": "game/icons/icon-128.png"
  },
  "background": {
    "page": "template/background.html",
    "persistent": false
  },
  "browser_action": {
    "default_icon": "game/icons/icon-128.png",
    "default_popup": "/game/popup.html"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://*.playtcubed.com/*",
      "http://*.playtcubed.com/*",
      "https://*.tcubedstudios.com/*",
      "http://*.tcubedstudios.com/*"
    ]
  },
  "web_accessible_resources": [
    "game/js/*",
    "game/libs/*"
  ]
}