Copy XML

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

O que é Copy XML?

Copy XML é uma extensão do Chrome desenvolvida por Juan Cortines, e sua principal característica é "Copies XML text, tries to indent and places it under the extension button".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Copy XML

Baixe arquivos de extensão Copy XML no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Copy XML Copy XML
ID fhhnocjlgkkmbmfiaejgnndmgokaleed
URL Oficial https://chromewebstore.google.com/detail/copy-xml/fhhnocjlgkkmbmfiaejgnndmgokaleed
Descrição Copies XML text, tries to indent and places it under the extension button
Tamanho do Arquivo 9.34 KB
Contagem de Instalações 250
Versão Atual 0.6
Última Atualização 2013-06-02
Data de Publicação 2013-06-02
Classificação 4.83/5 Total de 6 Avaliações
Desenvolvedor Juan Cortines
Tipo de Pagamento free
Idiomas Suportados 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
}