Copy Link and shorten,複製連結網址並縮短

Copy Link and shorten,複製連結網址並縮短

A Chrome extension to copy link on right click and shorten it,一個Chrome的插件可以滑鼠右鍵複製並縮短連結

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 Link and shorten,複製連結網址並縮短",
  "version": "1.0",
  "description": "A Chrome extension to copy link on right click and shorten it,一個Chrome的插件可以滑鼠右鍵複製並縮短連結",
  "permissions": [
    "contextMenus",
    "clipboardWrite",
    "scripting"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "host_permissions": [
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  }
}