Mon horaire

Mon horaire

Permet d'afficher votre horaire sur votre dashboard LAGAPEP

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Mon horaire",
  "version": "1.11.0",
  "description": "Permet d'afficher votre horaire sur votre dashboard LAGAPEP",
  "permissions": [],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon-16.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.portail.vd.ch/formation/lagapep/*"
      ],
      "exclude_globs": [
        "https://www.portail.vd.ch/formation/lagapep/eleves/*",
        "https://www.portail.vd.ch/formation/lagapep/enseignants/*",
        "https://www.portail.vd.ch/formation/lagapep/contrat-formation/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/loading.gif",
        "images/arrow_left.png",
        "images/arrow_right.png"
      ]
    }
  ],
  "author": "Cindy Hardegger, Cedric Schaffter"
}