Examine source code of Foxit PDF Editor Cloud: Edit and Convert

Inspect and view changes in Foxit PDF Editor Cloud: Edit and Convert 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
{
  "manifest_version": 3,
  "name": "Foxit PDF Editor Cloud: Edit and Convert",
  "version": "1.1.0",
  "description": "Improve your productivity and simplify online PDF processing with Foxit's Chrome extension.",
  "icons": {
    "16": "/icon/16.png",
    "32": "/icon/38.png",
    "48": "/icon/48.png",
    "128": "/icon/128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
    "sandbox": "sandbox script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://www.dropbox.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup/index.html",
    "default_icon": {
      "16": "/icon/popup-16.png",
      "32": "/icon/popup-32.png",
      "48": "/icon/popup-48.png",
      "128": "/icon/popup-128.png"
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "icon/*",
        "options/*",
        "content-script/*",
        "popup/*",
        "popup/*",
        "http:/*",
        "https:/*",
        "ftp:/*",
        "file:/*",
        "chrome-extension:/*",
        "blob:*",
        "data:*",
        "filesystem:/*",
        "drive:*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}