Examine source code of LokiConnect

Inspect and view changes in LokiConnect 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": "LokiConnect",
  "version": "1.0.10",
  "description": "Sync your data with Loki Tech",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "Components/*/*.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://logistics.amazon.com/*"
      ],
      "js": [
        "common.js",
        "login.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "login.html",
    "default_icon": "images/loki.png"
  }
}