Copy DOM Content

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

Wat is Copy DOM Content?

Copy DOM Content is een Chrome-extensie ontwikkeld door QoSMicro.com, en de belangrijkste functie is "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Copy DOM Content

Download Copy DOM Content-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.

Basisinformatie over de Extensie

Naam Copy DOM Content Copy DOM Content
ID dmdbhcacalljmfmilnhmnhihdfoamdap
Officiële URL https://chromewebstore.google.com/detail/copy-dom-content/dmdbhcacalljmfmilnhmnhihdfoamdap
Beschrijving This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.
Bestandsgrootte 13.8 KB
Aantal Installaties 803
Huidige Versie 1.1
Laatst Bijgewerkt 2016-04-24
Publicatiedatum 2016-04-24
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar QoSMicro.com
Betalingswijze free
Ondersteunde Talen 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"
    }
}