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": "0.4",
  "icons": {
    "128": "logo-uprep.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.masteringphysics.com/*"
      ],
      "css": [],
      "js": [
        "jquery-1.10.2.min.js",
        "work.js"
      ]
    },
    {
      "matches": [
        "*://www.pearsonmylabandmastering.com/northamerica/masteringphysics/"
      ],
      "css": [],
      "js": [
        "jquery-1.10.2.min.js",
        "login.js"
      ]
    }
  ],
  "options_page": "popup.html",
  "permissions": [
    "http://www.masteringphysics.com/"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.masteringphysics.com/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}