Smarter Smartschool

Smarter Smartschool

Makes smartschool smart. This extension turns Smartschool into dark mode, light mode or even a custom mode Source code: https://github.com/iwannet/SmarterSmartchool-Firefox/ currently the extension isnt working that good but im working on it;

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Smarter Smartschool",
  "short_name": "SSS",
  "version": "4.4",
  "description": "Makes smartschool smarter.",
  "permissions": [
    "activeTab",
    "storage",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "page_action": {
    "default_popup": "options.html"
  },
  "icons": {
    "16": "static/img/icon_16.png",
    "48": "static/img/icon_48.png",
    "128": "static/img/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.smartschool.be/Grades*"
      ],
      "js": [
        "static/js/jquery-3.4.1.min.js",
        "BeterGrades.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.smartschool.be/*"
      ],
      "js": [
        "BeterStyle.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.smartschool.be/"
      ],
      "js": [
        "BeterAnime.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{0d29743f-7717-45b3-918a-83ed3b5c4372}"
    }
  }
}