Copy Tab

Easily view and save tab info to a text file via toolbar popup.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "version": "0.1.3",
  "name": "Copy Tab",
  "manifest_version": 3,
  "homepage_url": "https://mybrowseraddon.com/copy-tab.html",
  "description": "View, save, and update tab info, cookie, and localStorage via the toolbar popup.",
  "commands": {
    "_execute_action": {}
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "109.0",
      "id": "{c23f420f-b93a-410e-8d82-9856cf8c261b}"
    }
  },
  "background": {
    "scripts": [
      "lib/config.js",
      "lib/chrome.js",
      "lib/runtime.js",
      "lib/common.js"
    ]
  },
  "action": {
    "default_title": "Copy Tab",
    "default_popup": "data/popup/popup.html",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}