Flipside Cracker

Flipside Cracker

Solves the weekly challenges released by Stanford Flipside with the click of a button!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Flipside Cracker",
  "version": "1.0.3",
  "description": "Solves the weekly challenges released by Stanford Flipside with the click of a button!",
  "icons": {
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_icon": "icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "http://stanfordflipside.com/"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}