Examine source code of In Zoom

Inspect and view changes in In Zoom 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",
  "name": "In Zoom",
  "version": "1.32",
  "description": "Zoom in and out on images and videos using shift + mouse wheel and by other ways.",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "homepage_url": "https://kpion.github.io/inzoom/",
  "browser_action": {
    "default_popup": "browserAction/index.html",
    "default_icon": {
      "16": "static/images/camera_lens_128.png",
      "32": "static/images/camera_lens_128.png",
      "48": "static/images/camera_lens_128.png",
      "128": "static/images/camera_lens_128.png"
    },
    "default_title": "In Zoom - zoom in / out on images and videos"
  },
  "background": {
    "page": "background/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "common/app.js",
        "lib/lightdom.js",
        "lib/config.js",
        "lib/hamster.js",
        "lib/point.js",
        "inzoom/inzoom.js"
      ],
      "css": [
        "inzoom/style.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "static/images/camera_lens_128.png",
    "32": "static/images/camera_lens_128.png",
    "48": "static/images/camera_lens_128.png",
    "128": "static/images/camera_lens_128.png"
  },
  "manifest_version": 2
}