Simple URL Copy [F]

Simple URL Copy [F]

A tool that helps you to copy url.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Simple URL Copy [F]",
  "description": "A tool that helps you to copy url.",
  "author": "@ikedaosushi, Misoni, and yudukiak(micelle)",
  "version": "2.3.3",
  "manifest_version": 3,
  "icons": {
    "16": "icons/16.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/16.png"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "resources/background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "Command+Shift+X"
      },
      "description": "Opens popup.html"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "resources/content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "contextMenus",
    "storage"
  ],
  "content_security_policy": {
    "default-src": "self"
  },
  "devtools_page": "popup.html"
}