Download Serialized DOM

Download serialized DOM with a click, which should include changes within the page effected since loading e.g. by JavaScript.

¿Qué es Download Serialized DOM?

Download Serialized DOM es una extensión de Chrome desarrollada por srguiwiz12, y su función principal es "Download serialized DOM with a click, which should include changes within the page effected since loading e.g. by JavaScript.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Download Serialized DOM

Descarga archivos de extensión Download Serialized DOM en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Download serialized DOM with a click, which should include changes within the page effected since loading e.g. by JavaScript.                    

Información Básica de la Extensión

Nombre Download Serialized DOM Download Serialized DOM
ID bphpkjcfblopmmmmpfmgglibakngcbfc
URL Oficial https://chromewebstore.google.com/detail/download-serialized-dom/bphpkjcfblopmmmmpfmgglibakngcbfc
Descripción Download serialized DOM with a click, which should include changes within the page effected since loading e.g. by JavaScript.
Tamaño del Archivo 19.74 KB
Cantidad de Instalaciones 55
Versión Actual 5.0.0
Última Actualización 2019-11-03
Fecha de Publicación 2019-11-03
Desarrollador srguiwiz12
Tipo de Pago free
Sitio Web de la Extensión https://github.com/srguiwiz/download-dom-crx
URL de la Página de Ayuda https://github.com/srguiwiz/download-dom-crx/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Download Serialized DOM",
    "description": "Download serialized DOM with a click, which should include changes within the page effected since loading e.g. by JavaScript.",
    "version": "5.0.0",
    "homepage_url": "https:\/\/github.com\/srguiwiz\/download-dom-crx",
    "icons": {
        "48": "downloadserializeddom48.png",
        "96": "downloadserializeddom96.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "page_action": {
        "default_icon": "downloadserializeddom48.png",
        "default_title": "Download Serialized DOM",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "downloads"
    ],
    "minimum_chrome_version": "49.0"
}