Copy DOM Content

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

Cos'è Copy DOM Content?

Copy DOM Content è un'estensione di Chrome sviluppata da QoSMicro.com, e la sua funzione principale è "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Copy DOM Content

Scarica i file di estensione Copy DOM Content in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.

Informazioni di Base sull'Estensione

Nome Copy DOM Content Copy DOM Content
ID dmdbhcacalljmfmilnhmnhihdfoamdap
URL Ufficiale https://chromewebstore.google.com/detail/copy-dom-content/dmdbhcacalljmfmilnhmnhihdfoamdap
Descrizione This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.
Dimensione del File 13.8 KB
Conteggio Installazioni 803
Versione Corrente 1.1
Ultimo Aggiornamento 2016-04-24
Data di Pubblicazione 2016-04-24
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore QoSMicro.com
Tipo di Pagamento free
Lingue Supportate 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"
    }
}