Copy Element Text

Copies the text inside elements

Copy Element Text là gì?

Copy Element Text là một tiện ích mở rộng Chrome được phát triển bởi mistweaver.co, và tính năng chính của nó là "Copies the text inside elements".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Copy Element Text

Tải xuống các tệp mở rộng Copy Element Text dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
URL Chính Thức https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Mô tả Copies the text inside elements
Kích Thước Tệp 41.63 KB
Số Lần Cài Đặt 564
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-10-19
Ngày Phát Hành 2022-10-03
Đánh Giá 3.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển mistweaver.co
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}