Cave Jump

Cave Jump

This game is a bit tough one and it is same as Fruit Ninja, very addictive game and the addiction grows more and more with level up.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "This game is a bit tough one and it is same as Fruit Ninja, very addictive game and the addiction grows more and more with level up.",
  "name": "Cave Jump",
  "version": "1.0.0",
  "author": "Cheesecakegames.com",
  "short_name": "Cave Jump",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "img/logo128.png",
    "default_title": "Cave Jump",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/jquery-3.3.1.min.js",
      "js/config.js",
      "js/background.min.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "homepage_url": "http://www.cheesecakegames.com/",
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "offline_enabled": false,
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.cdn-analytics.com; object-src 'self'",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "*://*/*",
    "<all_urls>"
  ]
}