Copy Element Text

Copies the text inside elements

什么是Copy Element Text?

Copy Element Text是由mistweaver.co开发的Chrome扩展程序,该扩展的主要功能是“Copies the text inside elements”。

扩展截图

screenshot
screenshot

下载Copy Element Text扩展crx文件

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

扩展使用说明

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

Full source-code available here: https://github.com/mistweaverco/copy-element-text

If you're looking for a "copy a link text" extension, head over to the companion extension here:

Copy Link Text
https://chrome.google.com/webstore/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh?hl=en                    

扩展基本信息

名称 Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
官方URL https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
简介 Copies the text inside elements
文件大小 41.63 KB
安装次数 564
当前版本 1.0.0
更新时间 2022-10-19
上架时间 2022-10-03
评分 3.60/5 共5次评分
开发者 mistweaver.co
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Element Text",
    "version": "1.0.0",
    "description": "Copies the text inside elements",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-32.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "boot.js"
            ]
        }
    ]
}