Examine source code of Wisebase Knowledge Collector for GPTs

Inspect and view changes in Wisebase Knowledge Collector for GPTs 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
{
  "name": "Wisebase Knowledge Collector for GPTs",
  "description": "Expand GPTs' knowledge: Add webpages, PDFs etc to GPTs' memories anywhere, anytime.",
  "manifest_version": 3,
  "version": "0.0.6",
  "icons": {
    "96": "./logo-lightgreen-96.png"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "scripting",
    "storage",
    "unlimitedStorage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*",
    "file:///"
  ],
  "optional_permissions": [],
  "action": {
    "default_icon": "./logo-lightgreen-96.png",
    "default_popup": "./pages/popup/index.html",
    "default_title": "Save to Wisebase"
  },
  "background": {
    "service_worker": "./background/index.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/index.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content-scripts/style.css",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}