CoursesPlus

CoursesPlus

An extension that makes Dalton Courses awesome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CoursesPlus",
  "version": "3.2.8",
  "manifest_version": 2,
  "description": "An extension that makes Dalton Courses awesome.",
  "icons": {
    "128": "images/icon128.png"
  },
  "background": {
    "page": "etc/bg.chrome.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "images/logos/circle.png",
    "default_popup": "etc/menubar.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://courses2017.dalton.org/*"
      ],
      "css": [
        "css/inject.css",
        "scss_gen/fonts.css"
      ],
      "js": [
        "js/cpal.js",
        "js/cpal.chrome.js",
        "js/jquery.js",
        "js/bootstrap.min.js",
        "js/consts.js",
        "js/helpers.js",
        "js/services.js",
        "js/components.js",
        "js/themes.js",
        "js/logos.js",
        "js/inject.js",
        "js/coursesLib.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "etc/options.html",
  "permissions": [
    "*://*.dalton.org/",
    "*://coursesplus.tk/",
    "*://*.coursesplus.tk/",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "optional_permissions": [
    "*://*/"
  ],
  "web_accessible_resources": [
    "images/*.png",
    "images/logos/*.png",
    "css/*.css",
    "fonts/*.eot",
    "fonts/*.svg",
    "fonts/*.ttf",
    "fonts/*.woff",
    "fonts/*.woff2",
    "js/*.js",
    "chosen/*.css",
    "chosen/*.png",
    "chosen/*.js",
    "etc/*.html",
    "scss_gen/*.css"
  ],
  "externally_connectable": {
    "matches": [
      "*://courses2017.dalton.org/*"
    ]
  },
  "content_security_policy": "script-src 'self' https://query.yahooapis.com https://www.wolframalpha.com; object-src 'self' https://www.wolframalpha.com"
}