Copy Element Text

Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.

Copy Element Textคืออะไร?

Copy Element Text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bracketsage และคุณลักษณะหลักของมันคือ "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard."

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

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

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

                        Copy Element Text lets you right click on an element and copy its contents or the contents of parent elements. Useful for pages that won't let you highlight.                    

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

ชื่อ Copy Element Text Copy Element Text
ID ikhdonfbocnkmhhcaejgopdlknaemhaj
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj
คำอธิบาย Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
ขนาดไฟล์ 32.97 KB
จำนวนการติดตั้ง 161
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2015-08-06
วันที่เผยแพร่ 2015-08-06
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา bracketsage
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "jq.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jq.js",
                "content.js"
            ],
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.",
    "manifest_version": 2,
    "name": "Copy Element Text",
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead"
    ],
    "short_name": "Copy ELement Text",
    "version": "0.0.2"
}