Copy DOM Content

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

Hvad er Copy DOM Content?

Copy DOM Content er en Chrome-udvidelse udviklet af QoSMicro.com, og dens hovedfunktion er "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Copy DOM Content-udvidelses-CRX-fil

Download Copy DOM Content-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.

Grundlæggende oplysninger om udvidelsen

Navn Copy DOM Content Copy DOM Content
ID dmdbhcacalljmfmilnhmnhihdfoamdap
Officiel URL https://chromewebstore.google.com/detail/copy-dom-content/dmdbhcacalljmfmilnhmnhihdfoamdap
Beskrivelse This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.
Filstørrelse 13.8 KB
Antal Installationer 803
Nuværende Version 1.1
Senest Opdateret 2016-04-24
Udgivelsesdato 2016-04-24
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler QoSMicro.com
Betalingsmetode free
Understøttede Sprog 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"
    }
}