Testing Solutions

Testing Solutions

Frustrated that the AAMC's new "MCAT Prep Hub" doesn't allow you to highlight or strikeout answers like you will be able to on test…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Testing Solutions",
  "description": "",
  "version": "0.1.3",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon.png",
      "48": "images/icon.png",
      "128": "images/icon.png"
    },
    "default_popup": "browser_action/browser_action.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.mcatofficialprep.org/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "libs/jquery.mark.js",
        "content_scripts/content_.js"
      ],
      "css": [
        "styles/content.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "https://www.mcatofficialprep.org/*",
    "http://serene-sands-82451.herokuapp.com/advertisement"
  ]
}