Examine source code of Open with nbviewer

Inspect and view changes in Open with nbviewer 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": "Open with nbviewer",
  "version": "1.2",
  "description": "automatically opens every github notebook you visits in new tab using nbviewer",
  "icons": {
    "48": "icons/icon.svg",
    "96": "icons/icon.svg"
  },
  "permissions": [
    "tabs",
    "storage",
    "*://*.github.com/*"
  ],
  "browser_action": {
    "default_icon": "icons/icon.svg",
    "default_title": "Open with nbviewer"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}