Copy Host

Copy Host

This extension allows you to copy the hostname of the current tab to your 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": "Copy Host",
  "short_name": "copyhost",
  "description": "This extension allows you to copy the hostname of the current tab to your clipboard.",
  "version": "1.1",
  "action": {
    "default_icon": "img/icon16.png",
    "default_title": "Press the button to copy the hostname to the clipboard",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+C"
      }
    }
  }
}