CopyTabTitleUrl

CopyTabTitleUrl

Copy the title and URL to the clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "3.5.11",
  "default_locale": "en",
  "author": "toshi",
  "homepage_url": "https://github.com/k08045kk/CopyTabTitleUrl",
  "minimum_chrome_version": "116.0",
  "background": {
    "service_worker": "/background/background.js"
  },
  "action": {
    "default_title": "__MSG_extensionName__",
    "default_icon": {
      "19": "icon/19.png",
      "38": "icon/38.png"
    }
  },
  "options_ui": {
    "page": "/options/options.html"
  },
  "icons": {
    "16": "/icon/16.png",
    "48": "/icon/48.png",
    "128": "/icon/128.png"
  },
  "commands": {
    "shortcut_action": {
      "suggested_key": {
        "default": "Alt+C"
      },
      "description": "format"
    },
    "shortcut_action2": {
      "description": "format2"
    }
  },
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "contextMenus",
    "offscreen",
    "scripting",
    "storage",
    "tabs"
  ]
}