Portail+

Portail+

An extension that enhances the COBA Portal

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Portail+",
  "version": "6969.0.69",
  "description": "An extension that enhances the COBA Portal",
  "sandbox": {
    "pages": [
      "src/js/sandbox.html"
    ]
  },
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts allow-popups; script-src 'self' 'unsafe-eval'"
  },
  "content_scripts": [
    {
      "matches": [
        "https://collegefdl.coba.ca/pednet/accueil.asp*"
      ],
      "js": [
        "src/js/Acceuil.js"
      ]
    },
    {
      "matches": [
        "https://collegefdl.coba.ca/pednet/travaux.asp*"
      ],
      "js": [
        "src/js/Travaux.js"
      ]
    },
    {
      "matches": [
        "https://collegefdl.coba.ca/pednet/login.asp*"
      ],
      "js": [
        "src/js/Login.js"
      ]
    },
    {
      "matches": [
        "https://collegefdl.coba.ca/pednet/horaire.asp*"
      ],
      "js": [
        "src/js/Horaire.js"
      ]
    },
    {
      "matches": [
        "https://collegefdl.coba.ca/pednet*"
      ],
      "js": [
        "src/js/Coba.js"
      ],
      "css": [
        "src/css/Acceuil.css"
      ]
    }
  ],
  "icons": {
    "16": "src/static/img/icon.png",
    "32": "src/static/img/icon.png",
    "48": "src/static/img/icon.png",
    "128": "src/static/img/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/static/audio/weliv.mp3",
        "src/static/img/smurfcat.png",
        "src/static/img/portaillogo.png",
        "src/js/sandbox.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}