Orah Roll Checks

Orah Roll Checks

Take class attendance in seconds

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Orah Roll Checks",
  "description": "Take class attendance in seconds",
  "version": "1.0.7",
  "icons": {
    "16": "images/[email protected]",
    "32": "images/[email protected]",
    "48": "images/[email protected]",
    "128": "images/[email protected]"
  },
  "side_panel": {
    "default_path": "side-panel.html"
  },
  "permissions": [
    "sidePanel",
    "storage",
    "tabs"
  ],
  "action": {
    "default_title": "Orah Roll Checks",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.orah.com/*",
        "*://*.orah-qat.com/*"
      ],
      "js": [
        "./content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "*://*.orah.com/",
    "*://*.orah-qat.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "orah-roll-checks.js"
      ],
      "matches": [
        "*://*.orah.com/*",
        "*://*.orah-qat.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.orah.com/*",
      "*://*.orah-qat.com/*"
    ]
  }
}