Copy DOM Content

This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.

Copy DOM Contentคืออะไร?

Copy DOM Content เป็นส่วนขยายของ Chrome ที่พัฒนาโดย QoSMicro.com และคุณลักษณะหลักของมันคือ "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements."

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

screenshot
screenshot

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

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

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

                        This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements. An  found will be converted to 
elements with the class "original_iframe" as long as they are from the same domain.

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

ชื่อ Copy DOM Content Copy DOM Content
ID dmdbhcacalljmfmilnhmnhihdfoamdap
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-dom-content/dmdbhcacalljmfmilnhmnhihdfoamdap
คำอธิบาย This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.
ขนาดไฟล์ 13.8 KB
จำนวนการติดตั้ง 803
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2016-04-24
วันที่เผยแพร่ 2016-04-24
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา QoSMicro.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Jose Manuel Sanchez",
    "homepage_url": "http:\/\/qosmicro.com\/",
    "name": "Copy DOM Content",
    "short_name": "Copy DOM",
    "description": "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.",
    "version": "1.1",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "index.html",
        "default_title": "Copy DOM Content"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}