Examine source code of Ipynb Files Viewer

Inspect and view changes in Ipynb Files Viewer 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ipynb Files Viewer",
  "version": "1.0.3",
  "description": "With this plugin you can use your browser as .ipynb files viewer",
  "author": "Anton Borzenko",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "background",
    "downloads"
  ],
  "background": {
    "scripts": [
      "ipynbHandler.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}