Copy XML

Copies XML text, tries to indent and places it under the extension button

¿Qué es Copy XML?

Copy XML es una extensión de Chrome desarrollada por Juan Cortines, y su función principal es "Copies XML text, tries to indent and places it under the extension button".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Copy XML

Descarga archivos de extensión Copy XML 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

                        This plugin is for people who often needs to copy ugly XML messages from the browser. The plugin will try to fix and indent the XML.

Once the plugin is installed, select the XML text, right-click and the select "Copy XML". After that the processed result is available under the extension button and the user can copy/paste it.

Revision history:

  0.6 - some bug fixes
  0.5 - updated icons
  0.4 - xml indentation size control
  0.3 - first release                    

Información Básica de la Extensión

Nombre Copy XML Copy XML
ID fhhnocjlgkkmbmfiaejgnndmgokaleed
URL Oficial https://chromewebstore.google.com/detail/copy-xml/fhhnocjlgkkmbmfiaejgnndmgokaleed
Descripción Copies XML text, tries to indent and places it under the extension button
Tamaño del Archivo 9.34 KB
Cantidad de Instalaciones 250
Versión Actual 0.6
Última Actualización 2013-06-02
Fecha de Publicación 2013-06-02
Calificación 4.83/5 Total de 6 Calificaciones
Desarrollador Juan Cortines
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy XML",
    "description": "Copies XML text, tries to indent and places it under the extension button",
    "version": "0.6",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon-s.png",
        "48": "icon-m.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}