Examine source code of Save All Tab URLs

Inspect and view changes in Save All Tab URLs 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": "Save All Tab URLs",
  "description": "Get the raw URLs of all your open tabs!",
  "version": "0.2.0",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "48": "icons/logo-48.png",
    "96": "icons/logo-96.png",
    "256": "icons/logo-256.png"
  },
  "action": {
    "default_icon": {
      "48": "icons/logo-48.png",
      "96": "icons/logo-96.png",
      "256": "icons/logo-256.png"
    }
  },
  "permissions": [
    "tabs"
  ]
}