Copy XML
Copies XML text, tries to indent and places it under the extension button
什么是Copy XML?
Copy XML是由Juan Cortines开发的Chrome扩展程序,该扩展的主要功能是“Copies XML text, tries to indent and places it under the extension button”。
扩展截图
下载Copy XML扩展crx文件
下载Copy XML扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Copy XML |
ID | fhhnocjlgkkmbmfiaejgnndmgokaleed |
官方URL | https://chromewebstore.google.com/detail/copy-xml/fhhnocjlgkkmbmfiaejgnndmgokaleed |
简介 | Copies XML text, tries to indent and places it under the extension button |
文件大小 | 9.34 KB |
安装次数 | 250 |
当前版本 | 0.6 |
更新时间 | 2013-06-02 |
上架时间 | 2013-06-02 |
评分 | 4.83/5 共6次评分 |
开发者 | Juan Cortines |
付费类型 | free |
支持的语言 | 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 } |