Simple PCR

Simple PCR

A chrome extension that reverts PCR to its original state, where assignments do not show up repeatedly throughout the week.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Simple PCR",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "A chrome extension that reverts PCR to its original state, where assignments do not show up repeatedly throughout the week.",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/chromereload.js",
      "scripts/background.js",
      "thirdparty/jquery-2.1.3.min.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "thirdparty/jquery-2.1.3.min.js",
        "scripts/inject.js"
      ],
      "matches": [
        "*://webappsca.pcrsoft.com/Clue/*"
      ]
    }
  ]
}