Show MyMathLab Score

Show MyMathLab Score

Display scores on MyMathLab homeworks without clicking 'see score'.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Show MyMathLab Score",
  "version": "0.0.0.1",
  "description": "Display scores on MyMathLab homeworks without clicking 'see score'.",
  "page_action": {
    "default_title": "Show MyMathLab Score",
    "default_icon": {
      "19": "img/question19.png",
      "38": "img/question38.png"
    }
  },
  "author": "Jack Kingsman <[email protected]>",
  "icons": {
    "16": "img/question16.png",
    "48": "img/question48.png",
    "128": "img/question128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.mathxl.com/Student/*"
      ],
      "js": [
        "js/main.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}