Adams12 Resources Helper

Adams12 Resources Helper

This extension is for Adams12 school district users.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Adams12 Resources Helper",
  "description": "This extension is for Adams12 school district users.",
  "version": "1.36",
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "offscreen",
    "clipboardWrite"
  ],
  "host_permissions": [
    "http://*.adams12.org/*",
    "https://*.adams12.org/*"
  ],
  "action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/AD12ResourcesImage16.png",
    "32": "img/AD12ResourcesImage32.png",
    "48": "img/AD12ResourcesImage48.png",
    "128": "img/AD12ResourcesImage.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://ic.adams12.org/*",
        "https://ic-testing.adams12.org/*",
        "https://ic-dev.adams12.org/*",
        "https://ic-testing-olr.adams12.org/*"
      ],
      "js": [
        "jquery-2.1.4.js",
        "content_ic.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://webfarm-dev.adams12.org/dev/datadashboard/*",
        "https://webfarm-dev.adams12.org/test/datadashboard/*",
        "https://webfarm.adams12.org/datadashboard/*"
      ],
      "js": [
        "jquery-2.1.4.js",
        "content_ews.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://enrich-training.adams12.org/*",
        "https://enrich-test.adams12.org/*",
        "https://enrich.adams12.org/*"
      ],
      "js": [
        "jquery-2.1.4.js",
        "content_enrich.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://student-transportation.tylerapp.com/COAdams12FiveStarS/*"
      ],
      "js": [
        "jquery-2.1.4.js",
        "content_tylerapp.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ]
}