Copy Element Text

Copies the text inside elements

What is Copy Element Text?

Copy Element Text is a Chrome extension developed by mistweaver.co, and its main feature is "Copies the text inside elements".

Extension Screenshots

screenshot
screenshot

Download Copy Element Text Extension CRX File

Download Copy Element Text extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
Official URL https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Description Copies the text inside elements
File Size 41.63 KB
Installation Count 564
Current Version 1.0.0
Last Updated 2022-10-19
Publish Date 2022-10-03
Rating 3.60/5 Total 5 Ratings
Developer mistweaver.co
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}