Tab Copy

Tab Copy

Copy all tabs to clipboard. No bells and whistles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Copy",
  "version": "1.0",
  "description": "Copy all tabs to clipboard. No bells and whistles.",
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "tabs"
  ],
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Copy to clipboard."
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      }
    }
  }
}