Examine source code of BatchBasket - Batch Saving to Pocket

Inspect and view changes in BatchBasket - Batch Saving to Pocket 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": "BatchBasket - Batch Saving to Pocket",
  "short_name": "BatchBasket",
  "description": "Save multiple links to Pocket at once from highlighted tabs, highlighted text or pasting urls. Compatible with The Great Suspender.",
  "version": "1.2.1",
  "icons": {
    "128": "img/icon128.png"
  },
  "action": {
    "default_title": "Batch Save to Pocket",
    "default_icon": {
      "19": "img/icon128.png",
      "38": "img/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/pocket-auth.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "https://getpocket.com/v3/send",
    "https://getpocket.com/v3/oauth/request"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pocket-auth-page.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}