Github Jupyter diff viewer

Github Jupyter diff viewer

Diff viewer for jupyter file(*.ipynb) in Github

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Github Jupyter diff viewer",
  "version": "0.0.8",
  "manifest_version": 2,
  "description": "Diff viewer for jupyter file(*.ipynb) in Github",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icons/icon128.png",
    "48": "icons/icon128.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "css": [
        "css/loader.css"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  }
}