Examine source code of USave

Inspect and view changes in USave 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": "USave",
  "version": "2.2.0",
  "description": "Save webpage content to Notion with AI.",
  "action": {
    "default_title": "USave",
    "default_icon": {
      "16": "icons/allmodes_icon16.png",
      "48": "icons/allmodes_icon46.png",
      "128": "icons/allmodes_icon128.png"
    }
  },
  "icons": {
    "16": "icons/allmodes_icon16.png",
    "48": "icons/allmodes_icon46.png",
    "128": "icons/allmodes_icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "identity",
    "cookies"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*",
    "https://api.notion.com/*",
    "https://*.firebaseio.com/*",
    "https://*.firebaseapp.com/*",
    "https://*.chromiumapp.org/*",
    "https://*.sentry.io/*",
    "https://us-central1-usave-dfcf9.cloudfunctions.net/return_db_content",
    "https://us-central1-usave-dfcf9.cloudfunctions.net/delete_account",
    "https://us-central1-usave-dfcf9.cloudfunctions.net/create_checkout_session",
    "https://us-central1-usave-dfcf9.cloudfunctions.net/dev_create_checkout_session",
    "https://us-central1-usave-dfcf9.cloudfunctions.net/fill_notion_page",
    "https://us-central1-usave-dfcf9.cloudfunctions.net/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "content_scripts": [],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "libs/readability.js",
        "contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}