Copy Text from HTML Extension

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

Copy Text from HTML Extensionคืออะไร?

Copy Text from HTML Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย juniormayhe และคุณลักษณะหลักของมันคือ "Copy text content of an HTML element with Shift + Alt + C"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Text from HTML Extension

ดาวน์โหลดไฟล์ส่วนขยาย Copy Text from HTML Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        "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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Copy Text from HTML Extension Copy Text from HTML Extension
ID lidcepffhffngghmeiooaeefcicggcpg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-text-from-html-exten/lidcepffhffngghmeiooaeefcicggcpg
คำอธิบาย Copy text content of an HTML element with Shift + Alt + C
ขนาดไฟล์ 1.54 MB
จำนวนการติดตั้ง 55
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-05-02
วันที่เผยแพร่ 2023-05-01
ผู้พัฒนา juniormayhe
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://juniormayhe.com/contact
URL หน้านโยบายความเป็นส่วนตัว https://github.com/juniormayhe/PipelineFilterExtension/blob/master/privacy.md
ภาษาที่รองรับ 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"
        }
    }
}