School Loop Easy Loop

School Loop Easy Loop

An extension that enhances the schoolloop interface to allow easy grade calculation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "School Loop Easy Loop",
  "short_name": "Easy Loop",
  "version": "3.1.3",
  "description": "An extension that enhances the schoolloop interface to allow easy grade calculation",
  "manifest_version": 2,
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "images/easyloop-icon16.png",
    "48": "images/easyloop-icon48.png",
    "128": "images/easyloop-icon128.png"
  },
  "web_accessible_resources": [
    "images/easyloop-logo.png"
  ],
  "browser_action": {
    "name": "Make grade calculation easier!",
    "default_icon": "images/easyloop-logo.png",
    "default_popup": "website/index.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-3.3.1.min.js",
        "bootstrap/js/bootstrap.min.js",
        "user.js",
        "background.js"
      ],
      "css": [
        "bootstrap/css/bootstrap.min.css"
      ],
      "matches": [
        "https://*.schoolloop.com/progress_report/*"
      ]
    },
    {
      "matches": [
        "https://*.schoolloop.com/*"
      ],
      "css": [
        "bootstrap/css/bootstrap.min.css",
        "animate.css",
        "sweetalert2.min.css"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "sweetalert2.min.js",
        "bootstrap/js/bootstrap.min.js",
        "init.js",
        "theme_generator.js"
      ]
    }
  ]
}