Examine source code of Instabook

Inspect and view changes in Instabook 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": 3,
  "name": "Instabook",
  "version": "1.2.6",
  "author": "Bartosz Wójcik",
  "homepage_url": "https://github.com/bartoffw/instabook",
  "description": "Create an eBook from any page instantly and beautifully.",
  "icons": {
    "48": "icons/logo-48.png",
    "96": "icons/logo-96.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/browser-polyfill.min.js",
        "scripts/jquery.min.js",
        "scripts/jszip-utils.min.js",
        "scripts/purify.js",
        "scripts/filesaver.min.js",
        "scripts/Readability.js",
        "scripts/epub.js",
        "scripts/content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/cover.jpg",
        "assets/divider.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "offscreen",
    "storage"
  ],
  "action": {
    "default_icon": {
      "16": "icons/logo-16.png",
      "32": "icons/logo-32.png"
    },
    "default_title": "Instabook It!",
    "default_popup": "action/popup.html"
  }
}