Export Tabs as Text File

Chrome Tabs extension saves active tab URLs with a single click. Export them as a text file to your computer.
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": "Export Tabs as Text File",
  "version": "1.0.1",
  "description": "Chrome Tabs extension saves active tab URLs with a single click. Export them as a text file to your computer.",
  "icons": {
    "16": "OIG.png",
    "32": "OIG.png",
    "48": "OIG.png",
    "128": "OIG.png"
  },
  "permissions": [
    "tabs",
    "downloads"
  ],
  "action": {
    "default_icon": {
      "16": "OIG.png",
      "32": "OIG.png",
      "48": "OIG.png",
      "128": "OIG.png"
    },
    "default_popup": "popup.html"
  }
}