Copy XML

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

Co to jest Copy XML?

Copy XML to rozszerzenie Chrome opracowane przez Juan Cortines, a jego główną funkcją jest „Copies XML text, tries to indent and places it under the extension button”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Copy XML

Pobierz pliki rozszerzeń Copy XML w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Copy XML Copy XML
ID fhhnocjlgkkmbmfiaejgnndmgokaleed
Oficjalny URL https://chromewebstore.google.com/detail/copy-xml/fhhnocjlgkkmbmfiaejgnndmgokaleed
Opis Copies XML text, tries to indent and places it under the extension button
Rozmiar pliku 9.34 KB
Liczba instalacji 250
Aktualna Wersja 0.6
Ostatnia Aktualizacja 2013-06-02
Data Publikacji 2013-06-02
Ocena 4.83/5 Łącznie 6 Oceny
Deweloper Juan Cortines
Typ Płatności free
Obsługiwane Języki 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
}