PDF.ai - Ultimate ChatPDF extension

PDF.ai - Ultimate ChatPDF extension

The ultimate ChatPDF extension that allows you to chat with any PDF using AI: ask questions, get summaries, find anything you need!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PDF.ai - Ultimate ChatPDF extension",
  "description": "The ultimate ChatPDF extension that allows you to chat with any PDF using AI: ask questions, get summaries, find anything you need!",
  "version": "1.1.1",
  "permissions": [
    "storage",
    "webRequest",
    "scripting",
    "identity",
    "identity.email",
    "file:///*/*"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "action": {
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "iframe.html",
        "/images/*",
        "/fonts/*",
        "/lib/tesseract/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://drive.google.com/file/d/*/view",
        "https://drive.google.com/drive/u/*/*",
        "https://www.dropbox.com/s/*/*",
        "https://dropbox.com/s/*/*",
        "https://www.dropbox.com/home*",
        "https://dropbox.com/home*",
        "https://www.dropbox.com/recents*",
        "https://dropbox.com/recents*",
        "https://www.dropbox.com/h*",
        "https://dropbox.com/h*",
        "https://*.docusign.net/Signing/?ti=*",
        "https://docusign.net/Signing/?ti=*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "128": "/images/icon.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "externally_connectable": {
    "matches": [
      "https://www.pdf.ai/*",
      "https://pdf.ai/*"
    ]
  }
}