Copy Link Text

Copies the text inside links

什么是Copy Link Text?

Copy Link Text是由vestakuphal285开发的Chrome扩展程序,该扩展的主要功能是“Copies the text inside links”。

扩展截图

screenshot
screenshot

下载Copy Link Text扩展crx文件

下载Copy Link Text扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Enables you to copy the text of a link within the context menu.
Just right click on the link and select "Copy link text".

Update ver: 1.12.1
 - Added copy text link history management feature, can review, export file txt and delete log history.
 - You can also share the copy text link history including text and link for you on social networks such as Twitter, LinkedIn and Facebook (automatically share using post api).                    

扩展基本信息

名称 Copy Link Text Copy Link Text
ID loeniidbmeohdlmipbpkfmiogbcncibh
官方URL https://chromewebstore.google.com/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh
简介 Copies the text inside links
文件大小 565 KB
安装次数 30,654
当前版本 3.0.1
更新时间 2023-11-20
上架时间 2020-09-25
评分 3.23/5 共78次评分
开发者 vestakuphal285
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://sites.google.com/view/pass-generator-2023/home
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Text",
    "description": "Copies the text inside links",
    "default_locale": "en",
    "version": "3.0.1",
    "icons": {
        "16": ".\/icon-128.png",
        "48": ".\/icon-128.png",
        "128": ".\/icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                ".\/content-style.css"
            ],
            "js": [
                ".\/js\/content_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/anotepad.com\/*"
    ],
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}