Examine source code of Orah Nurture

Inspect and view changes in Orah Nurture source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Orah Nurture",
  "description": "Easily capture behavioural notes for students",
  "version": "1.0.7",
  "icons": {
    "16": "images/logo@16.png",
    "32": "images/logo@32.png",
    "48": "images/logo@48.png",
    "128": "images/logo@128.png"
  },
  "side_panel": {
    "default_path": "side-panel.html"
  },
  "permissions": [
    "sidePanel",
    "storage",
    "tabs"
  ],
  "action": {
    "default_title": "Nurture notes",
    "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": [
        "nurture-notes.js"
      ],
      "matches": [
        "*://*.orah.com/*",
        "*://*.orah-qat.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.orah.com/*",
      "*://*.orah-qat.com/*"
    ]
  }
}