Schoology Improvements

Schoology Improvements

A Extension that adds darkmode along with other features to schoology

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "./background.js"
    ]
  },
  "browser_action": {
    "default_popup": "./popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "./contentScripts.js"
      ],
      "css": [
        "./contentScripts.js"
      ],
      "matches": [
        "http://schoology.dpsk12.org/*",
        "https://schoology.dpsk12.org/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "js": [
        "./hideAtStart.js"
      ],
      "css": [
        "./hideAtStart.js"
      ],
      "matches": [
        "http://schoology.dpsk12.org/*",
        "https://schoology.dpsk12.org/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "A Extension that adds darkmode along with other features to schoology",
  "icons": {
    "16": "assets/icons/icon_16.png",
    "32": "assets/icons/icon_32.png",
    "64": "assets/icons/icon_64.png",
    "128": "assets/icons/icon_128.png"
  },
  "manifest_version": 2,
  "name": "Schoology Improvements",
  "options_ui": {
    "chrome_style": false,
    "page": "./options.html"
  },
  "permissions": [
    "http://schoology.dpsk12.org/*",
    "https://schoology.dpsk12.org/*",
    "background",
    "storage",
    "webRequest"
  ],
  "version": "1.0.0",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}