Copy Tabs URL

Copy Tabs URL

Copy all tabs URLs at once.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Copy Tabs URL",
  "version": "1.0",
  "description": "Copy all tabs URLs at once.",
  "icons": {
    "16": "tabs.png",
    "32": "tabs.png",
    "48": "tabs.png",
    "128": "tabs.png"
  },
  "permissions": [
    "tabs",
    "clipboardWrite",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Copy All Tabs URL",
    "default_popup": "popup.html"
  }
}