School Loop Enhancer

School Loop Enhancer

Adds missing features to SchoolLoop.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "School Loop Enhancer",
  "short_name": "SLE",
  "version": "0.7.1.0",
  "manifest_version": 2,
  "description": "Adds missing features to SchoolLoop.com",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "js/bg.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/icon48.png",
    "default_title": "School Loop Enhancer"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.schoolloop.com/*"
      ],
      "exclude_matches": [
        "*://search.schoolloop.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/main.js"
      ],
      "css": [
        "css/main.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://search.schoolloop.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/schoolLoopSearch.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    "images/*"
  ]
}