Copy Element Text

Copies the text inside elements

Copy Element Textคืออะไร?

Copy Element Text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mistweaver.co และคุณลักษณะหลักของมันคือ "Copies the text inside elements"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}