Rubik Game

Rubik Game

Rubik game is a funny game to let you try to hack your brain

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rubik Game",
  "short_name": "Funny Game",
  "manifest_version": 2,
  "version": "1.0.0",
  "description": "Rubik game is a funny game to let you try to hack your brain",
  "browser_action": {
    "default_icon": "128.png",
    "default_title": "Launch game"
  },
  "background": {
    "page": "bgr.html",
    "persistent": false
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "<all_urls>"
  ],
  "icons": {
    "128": "128.png"
  },
  "web_accessible_resources": [
    "game/*.css",
    "game/*.js",
    "game/lib/*.js"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}