Copy XML

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

Vad är Copy XML?

Copy XML är en Chrome-tillägg utvecklad av Juan Cortines, och dess huvudfunktion är "Copies XML text, tries to indent and places it under the extension button".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Copy XML-förlängningens CRX-fil

Ladda ner Copy XML-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Copy XML Copy XML
ID fhhnocjlgkkmbmfiaejgnndmgokaleed
Officiell webbadress https://chromewebstore.google.com/detail/copy-xml/fhhnocjlgkkmbmfiaejgnndmgokaleed
Beskrivning Copies XML text, tries to indent and places it under the extension button
Filstorlek 9.34 KB
Antal Installationer 250
Aktuell Version 0.6
Senast Uppdaterad 2013-06-02
Publiceringsdatum 2013-06-02
Betyg 4.83/5 Totalt 6 Betyg
Utvecklare Juan Cortines
Betalningssätt free
Stödda Språk 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
}