Examine source code of Notebook Web Clipper

Inspect and view changes in Notebook Web Clipper 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": "Notebook Web Clipper",
  "description": "Clear the clutter. Clip the web. Save to Notebook.",
  "version": "2.2.3",
  "background": {
    "service_worker": "dist/clipper-background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "initial-load.js",
        "vendor/readability/Readability.js",
        "vendor/jquery/jquery-3.1.0.min.js",
        "vendor/zoho/annotator/fcomponents_annotator.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/*",
        "assets/*",
        "images/*",
        "css/*",
        "js/*",
        "fonts/*",
        "vendor/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "19": "assets/icons/notebook-icon.png",
      "38": "assets/icons/notebook-icon@2x.png",
      "128": "assets/icons/notebook-128.png"
    }
  },
  "icons": {
    "16": "assets/icons/notebook-icon.png",
    "32": "assets/icons/notebook-icon@2x.png",
    "48": "assets/icons/notebook-128.png",
    "128": "assets/icons/notebook-128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "contextMenus",
    "webNavigation"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}