Examine source code of ZLibrary Searcher

Inspect and view changes in ZLibrary Searcher 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
{
  "action": {
    "default_icon": "favicon.png",
    "default_title": "ZLibrary Searcher"
  },
  "description": "Quickly search, preview and download books on ZLibrary",
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/wikipedia.js"
      ],
      "matches": [
        "https://*.wikipedia.org/*"
      ],
      "run_at": "document_end"
    }
  ],
  "side_panel": {
    "default_path": "index.html"
  },
  "manifest_version": 3,
  "name": "ZLibrary Searcher",
  "permissions": [
    "sidePanel",
    "downloads",
    "storage",
    "cookies",
    "declarativeNetRequest"
  ],
  "version": "1.1.5",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}