Miller School of Medicine Hacks

Miller School of Medicine Hacks

A google chrome extension to fix the layout bug on mededu.miami.edu and a not always successful button to give a rating to all…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Miller School of Medicine Hacks",
  "version": "1.2",
  "browser_action": {
    "default_title": "Miller School of Medicine Hacks",
    "default_icon": "images/small-icon.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.mededu.miami.edu/MedEd",
        "*://*.new-innov.com/EvaluationForms/*"
      ],
      "js": [
        "js/jquery.js",
        "js/content-script.js"
      ],
      "css": [
        "css/style.css"
      ]
    }
  ],
  "background": {
    "page": "bg.html"
  },
  "manifest_version": 2
}