CheckSchoology Lite

CheckSchoology Lite

CheckSchoology Lite brings features from your favorite PCR extension into Schoology.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CheckSchoology Lite",
  "version": "1.1.2",
  "description": "CheckSchoology Lite brings features from your favorite PCR extension into Schoology.",
  "manifest_version": 2,
  "icons": {
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "*://schoology.harker.org/calendar/*",
        "*://athena.harker.org/calendar/*",
        "*://app.schoology.com/calendar/*"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": {
      "32": "icons/icon32.png"
    }
  },
  "permissions": [
    "storage",
    "webRequest",
    "*://schoology.harker.org/calendar/*",
    "*://athena.harker.org/calendar/*",
    "*://app.schoology.com/calendar/*"
  ],
  "short_name": "CheckSchoology"
}