Examine source code of PageProof. Online proofing, review & approval

Inspect and view changes in PageProof. Online proofing, review & approval 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": 2,
  "name": "PageProof. Online proofing, review & approval",
  "short_name": "PageProof",
  "description": "The perfect extension to PageProof. Let’s make reviewing and approving creative work effortless.",
  "version": "1.6.5",
  "homepage_url": "https://app.pageproof.com",
  "icons": {
    "16": "assets/images/icon16-production.png",
    "32": "assets/images/icon32-production.png",
    "48": "assets/images/icon48-production.png",
    "128": "assets/images/icon128-production.png"
  },
  "browser_action": {
    "default_icon": "assets/images/icon32-production.png"
  },
  "web_accessible_resources": [
    "worker.*.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://app.pageproof.com/*"
      ],
      "js": [
        "pageproof.bundle.js"
      ]
    },
    {
      "matches": [
        "*://www.canva.com/design/*/*/edit*"
      ],
      "js": [
        "patch-worker.js",
        "canva.bundle.js"
      ]
    },
    {
      "matches": [
        "https://app.pageproof.com/_private/embed-login/*"
      ],
      "js": [
        "pageproof-embed-login.bundle.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "event.bundle.js",
      "web-url-proofing.bundle.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "cookies",
    "http://*/",
    "https://*/",
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}