BBB Moodle Prettifier

BBB Moodle Prettifier

🌟 it will make your ugly moodle shine

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BBB Moodle Prettifier",
  "short_name": "Moodle Prettifier",
  "homepage_url": "https://github.com/bash/bbb-moodle-prettifier",
  "version": "4.1.3",
  "description": "🌟 it will make your ugly moodle shine",
  "permissions": [
    "https://moodle.bbbaden.ch/*",
    "https://moodle-stage.bbbaden.ch/*",
    "http://moodle.bbbaden.ch/*",
    "storage",
    "downloads",
    "background"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://moodle.bbbaden.ch/*",
        "https://moodle-stage.bbbaden.ch/*",
        "http://moodle.bbbaden.ch/*"
      ],
      "js": [
        "js/inject.js"
      ]
    }
  ],
  "icons": {
    "128": "logo.png"
  },
  "web_accessible_resources": [
    "html/options.html",
    "fonts/*"
  ],
  "page_action": {
    "default_icon": {
      "128": "logo.png"
    },
    "default_popup": "html/options.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  }
}