PrepWork

PrepWork

PrepWork is a Chrome extension that lets you access answers to the questions of WebWork.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PrepWork",
  "version": "1.1",
  "description": "PrepWork is a Chrome extension that lets you access answers to the questions of WebWork.",
  "author": "Vaibhav Sharma",
  "homepage_url": "https://chromewebstore.google.com/detail/prepwork/meognjhkaeidmpoddghbdichphbjgnjm",
  "manifest_version": 3,
  "action": {
    "default_title": "PrepWork",
    "default_popup": "popup.html",
    "default_icon": "./assets/logo.png"
  },
  "icons": {
    "16": "./assets/logo-16.png",
    "24": "./assets/logo-24.png",
    "32": "./assets/logo-32.png",
    "48": "./assets/logo-48.png",
    "128": "./assets/logo-128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://webwork.elearning.ubc.ca/*",
    "https://prep-work-api.vercel.app/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://webwork.elearning.ubc.ca/*"
      ],
      "js": [
        "html2canvas.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "./background.js"
  }
}