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
官方URL 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": [
        ""
    ]
}