Send URL to LINE Notify

Send URL to LINE Notify

此Chrome擴展不僅提供快速方便的方式來發送網址到LINE Notify,並且支持將長網址縮短,還新增了選取文字後通過右鍵菜單直接發送到LINE的功能,極大地提升了使用便利性。 這特別適合經常需要在LINE上分享網址或文字的用戶。…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Send URL to LINE Notify",
  "version": "3.8",
  "permissions": [
    "activeTab",
    "storage",
    "clipboardWrite",
    "contextMenus"
  ],
  "host_permissions": [
    "https://notify-api.line.me/",
    "https://api.reurl.cc/"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "LINE16.png",
      "48": "LINE48.png",
      "128": "LINE128.png"
    }
  },
  "icons": {
    "16": "LINE16.png",
    "48": "LINE48.png",
    "128": "LINE128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}