Copy Text as Link

Copy the selected text as a HTML link to the clipboard that can be pasted in in supported editors with the hyperlink intact.

什麼是Copy Text as Link?

Copy Text as Link是由Ryan Spain開發的Chrome擴展程式,該擴展的主要功能是“Copy the selected text as a HTML link to the clipboard that can be pasted in in supported editors with the hyperlink intact.”。

擴展截圖

screenshot

下載Copy Text as Link擴展crx文件

下載Copy Text as Link擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension removes the need to copy a link address and link text seperately. By simply highlighting text on a webpage, right-clicking and selected 'Copy text as link', the selected text will be copied to the clipboard as a link using the active tabs URL.

Copy the selected text as a HTML link to the clipboard that can be pasted in in supported editors with the hyperlink intact.

Pasted links will inherit the styling of the target rich text editor.                    

擴展基本資訊

名稱 Copy Text as Link Copy Text as Link
ID jdhbnbfdhfndpjafikjmbdabogdecenp
官方網址 https://chromewebstore.google.com/detail/copy-text-as-link/jdhbnbfdhfndpjafikjmbdabogdecenp
簡介 Copy the selected text as a HTML link to the clipboard that can be pasted in in supported editors with the hyperlink intact.
檔案大小 14.3 KB
安裝次數 93
目前版本 1.0
更新時間 2021-11-11
上架時間 2021-09-12
評分 5.00/5 共 3 次評分
開發者 Ryan Spain
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/ryanspain/chromium-copy-text-as-link
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Text as Link",
    "description": "Copy the selected text as a HTML link to the clipboard that can be pasted in in supported editors with the hyperlink intact.",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "16": ".\/images\/icon-16x16.png",
        "32": ".\/images\/icon-32x32.png",
        "48": ".\/images\/icon-48x48.png",
        "128": ".\/images\/icon-128x128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "permissions": [
        "tabs",
        "scripting",
        "contextMenus"
    ],
    "host_permissions": [
        ""
    ]
}