MaMa-Marks

MaMa-Marks

Getting marks from your task bubbles in MaMa

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MaMa-Marks",
  "description": "Getting marks from your task bubbles in MaMa",
  "permissions": [
    "tabs",
    "storage"
  ],
  "manifest_version": 3,
  "version": "1.0.0",
  "author": "Al Caughey",
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://staffapps.ocdsb.ca/mama/*"
      ],
      "css": [
        "css/mama.css"
      ],
      "js": [
        "js/util.js",
        "js/html2canvas.min.js",
        "js/draggable.js",
        "mama.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "icons": {
    "128": "images/128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": []
    }
  ]
}