Copy DOM Content

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

What is Copy DOM Content?

Copy DOM Content is a Chrome extension developed by QoSMicro.com, and its main feature is "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.".

Extension Screenshots

screenshot
screenshot

Download Copy DOM Content Extension CRX File

Download Copy DOM Content extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.

Extension Basic Information

Name Copy DOM Content Copy DOM Content
ID dmdbhcacalljmfmilnhmnhihdfoamdap
Official URL https://chromewebstore.google.com/detail/copy-dom-content/dmdbhcacalljmfmilnhmnhihdfoamdap
Description This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.
File Size 13.8 KB
Installation Count 803
Current Version 1.1
Last Updated 2016-04-24
Publish Date 2016-04-24
Rating 5.00/5 Total 2 Ratings
Developer QoSMicro.com
Payment Type free
Supported Languages 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"
    }
}