Copy DOM Content

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

Apa itu Copy DOM Content?

Copy DOM Content adalah ekstensi Chrome yang dikembangkan oleh QoSMicro.com, dan fitur utamanya adalah "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Copy DOM Content

Unduh file ekstensi Copy DOM Content dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.

Informasi Dasar Ekstensi

Nama Copy DOM Content Copy DOM Content
ID dmdbhcacalljmfmilnhmnhihdfoamdap
URL Resmi https://chromewebstore.google.com/detail/copy-dom-content/dmdbhcacalljmfmilnhmnhihdfoamdap
Deskripsi This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.
Ukuran File 13.8 KB
Jumlah Instalasi 803
Versi Saat Ini 1.1
Terakhir Diperbarui 2016-04-24
Tanggal Publikasi 2016-04-24
Penilaian 5.00/5 Total 2 Penilaian
Pengembang QoSMicro.com
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}