Salt

Salt

Enhance Gonville and Caius College's meal booking website with a dash of Salt

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Salt",
  "description": "Enhance Gonville and Caius College's meal booking website with a dash of Salt",
  "version": "0.0.21",
  "default_locale": "en",
  "icons": {
    "16": "IMAGES/icon-16.png",
    "48": "IMAGES/icon-48.png",
    "96": "IMAGES/icon-96.png",
    "128": "IMAGES/icon-128.png",
    "256": "IMAGES/icon-256.png",
    "512": "IMAGES/icon-512.png",
    "1024": "IMAGES/icon-1024.png"
  },
  "action": {
    "default_icon": {
      "16": "IMAGES/icon-16.png",
      "19": "IMAGES/icon-19.png",
      "32": "IMAGES/icon-32.png",
      "38": "IMAGES/icon-38.png",
      "48": "IMAGES/icon-48.png",
      "72": "IMAGES/icon-72.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.mealbookings.cai.cam.ac.uk/*"
      ],
      "js": [
        "JS/contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.mealbookings.cai.cam.ac.uk/*"
      ],
      "resources": [
        "*.html",
        "CSS/*",
        "JS/*",
        "IMAGES/collegeCrest.png"
      ]
    }
  ]
}