Server-Side Render (SSR) Viewer

View the current page at its "first render" in the browser.
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",
  "name": "Server-Side Render (SSR) Viewer",
  "version": "1.1.0",
  "description": "View the current page at its \"first render\" in the browser.",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  }
}