Examine source code of Prophecy

Inspect and view changes in Prophecy 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": "Prophecy",
  "version": "1.23",
  "description": "Generates email replies using your company's knowledge base",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://mail.google.com/*",
    "https://www.googleapis.com/*",
    "https://services.vectortrees.com:5000/*",
    "https://vectortrees.com/extension"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "prophecy16.png",
      "48": "prophecy48.png",
      "128": "prophecy128.png"
    }
  },
  "icons": {
    "16": "prophecy16.png",
    "48": "prophecy48.png",
    "128": "prophecy128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "settings.html",
  "externally_connectable": {
    "matches": [
      "https://www.googleapis.com/*",
      "https://services.vectortrees.com:5000/*",
      "https://vectortrees.com/extension"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-ancestors 'none';"
  }
}