Mastering Physics Auto Login

Mastering Physics Auto Login

Automatically logs into the Mastering Physics website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mastering Physics Auto Login",
  "description": "Automatically logs into the Mastering Physics website.",
  "version": "1.0",
  "author": "Karl Wang",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.masteringphysics.com/*"
      ],
      "css": [],
      "js": [
        "work.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "options_page": "options.html",
  "permissions": [
    "http://www.masteringphysics.com/",
    "storage"
  ]
}