Examine source code of Cryplex AI Storage Node

Inspect and view changes in Cryplex AI Storage Node 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": "Cryplex AI Storage Node",
  "version": "1.0.8",
  "description": "AI Training on Decentralized Storage Networks",
  "icons": {
    "16": "./assets/favicon_io/icon16.png",
    "32": "./assets/favicon_io/icon32.png",
    "48": "./assets/favicon_io/icon48.png",
    "128": "./assets/favicon_io/icon128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "./assets/favicon_io/icon16.png",
      "32": "./assets/favicon_io/icon32.png",
      "48": "./assets/favicon_io/icon48.png",
      "128": "./assets/favicon_io/icon128.png"
    }
  },
  "permissions": [
    "storage",
    "background"
  ],
  "background": {
    "service_worker": "worker.loader.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "https://*/*",
      "http://*/*"
    ]
  },
  "host_permissions": [
    "https://app.cryplex.ai/*"
  ]
}