GradeMyGold

GradeMyGold

Easily calculate your predicted GPA within GOLD.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GradeMyGold",
  "version": "1.6",
  "author": "Casey Barbello",
  "description": "Easily calculate your predicted GPA within GOLD.",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "page_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://my.sa.ucsb.edu/gold/StudentGrades.aspx"
      ],
      "css": [
        "sheet.css"
      ],
      "js": [
        "main.js"
      ]
    }
  ]
}