Examine source code of Singularity Notes Tool

Inspect and view changes in Singularity Notes Tool 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": "Singularity Notes Tool",
  "version": "1.0.8",
  "description": "Singularity note management tool helps users to manage their private notes when deploying assets into Singularity.",
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "content_scripts": [
    {
      "js": [
        "assets/contentScript.ts-loader.c532f61e.js"
      ],
      "matches": [
        "https://uat-app.thesingularity.network/*",
        "https://app.thesingularity.network/*"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "permissions": [
    "alarms",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://uat-app.thesingularity.network/*",
    "https://app.thesingularity.network/*",
    "https://notes.thesingularity.network/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://app.thesingularity.network/*",
        "https://uat-app.thesingularity.network/*"
      ],
      "resources": [
        "assets/injectScript.js"
      ],
      "use_dynamic_url": false
    }
  ]
}