mySchoolApp++

mySchoolApp++

A set of tools that add additional functionality for any myschoolapp.com, mycampus-app.com, and onwhipplehill.com website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "mySchoolApp++",
  "author": "Grayson Martin (graysonmartin.net)",
  "version": "1.1",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "description": "A set of tools that add additional functionality for any myschoolapp.com, mycampus-app.com, and onwhipplehill.com website.",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "https://*.myschoolapp.com/",
    "http://*.myschoolapp.com/",
    "https://*.mycampus-app.com/",
    "http://*.mycampus-app.com/",
    "https://*.onwhipplehill.com/",
    "http://*.onwhipplehill.com/",
    "activeTab",
    "storage",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.myschoolapp.com/*",
        "http://*.myschoolapp.com/*",
        "https://*.mycampus-app.com/*",
        "http://*.mycampus-app.com/*",
        "https://*.onwhipplehill.com/*",
        "http://*.onwhipplehill.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "manifest_version": 2
}