Examine source code of Openreview Quicklook

Inspect and view changes in Openreview Quicklook 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
{
  "name": "Openreview Quicklook",
  "description": "Quicklook the summary of openreview submission",
  "version": "1.3",
  "homepage_url": "https://github.com/weigq/openview_quicklook",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [],
  "browser_action": {},
  "icons": {
    "128": "/logo.png"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "right-arrow.svg",
    "left-arrow.svg"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "css": [
        "style.min.css"
      ],
      "js": [
        "content.min.js"
      ],
      "matches": [
        "https://openreview.net/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}