Copy Text from HTML Extension

Copy text content of an HTML element with Shift + Alt + C

Copy Text from HTML Extension là gì?

Copy Text from HTML Extension là một tiện ích mở rộng Chrome được phát triển bởi juniormayhe, và tính năng chính của nó là "Copy text content of an HTML element with Shift + Alt + C".

Ả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 Text from HTML Extension

Tải xuống các tệp mở rộng Copy Text from HTML Extension 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

                        "Copy Text from HTML" allows users to copy the text content of an HTML element with ease. When activated with the hotkey Shift + Alt + C, it removes all HTML tags and attributes, JavaScript code, CSS styles, empty and blank lines, special characters, and commented code, leaving only the plain text content. 

It also handles special cases, such as select elements, lists, and anchor tags within lists, to provide the user with the most accurate and useful text content possible. 

With this extension, copying text from HTML has never been easier or more reliable.

If you find any trouble, try to right click the desired element and then press Shift + Alt + C.                    

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

Tên Copy Text from HTML Extension Copy Text from HTML Extension
ID lidcepffhffngghmeiooaeefcicggcpg
URL Chính Thức https://chromewebstore.google.com/detail/copy-text-from-html-exten/lidcepffhffngghmeiooaeefcicggcpg
Mô tả Copy text content of an HTML element with Shift + Alt + C
Kích Thước Tệp 1.54 MB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-05-02
Ngày Phát Hành 2023-05-01
Nhà Phát Triển juniormayhe
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://juniormayhe.com/contact
URL Trang Chính Sách Bảo Mật https://github.com/juniormayhe/PipelineFilterExtension/blob/master/privacy.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Text from HTML Extension",
    "version": "1.0",
    "description": "Copy text content of an HTML element with Shift + Alt + C",
    "author": "junior mayhe",
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "store\/16.png",
        "32": "store\/32.png",
        "48": "store\/48.png",
        "128": "store\/128.png"
    },
    "action": {
        "default_title": "Copy Text",
        "default_icon": "icon.png"
    },
    "commands": {
        "copy-text": {
            "suggested_key": {
                "default": "Shift+Alt+C"
            },
            "description": "Copy text only from selected HTML element"
        }
    }
}