MeterSphere
MeterSphere Recorder
¿Qué es MeterSphere?
MeterSphere es una extensión de Chrome desarrollada por http://metersphere.io, y su función principal es "MeterSphere Recorder".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión MeterSphere
Descarga archivos de extensión MeterSphere 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
MeterSphere 配套的浏览器插件,该插件可将用户在浏览器操作时的 HTTP 请求记录下来并生成 JMX 文件(JMeter 脚本文件),快速在 MeterSphere 中进行接口测试或性能测试。 当开启录制按钮后,MeterSphere 浏览器插件会记录浏览器发送的所有 HTTP/S 请求,录制停止后用户可选择需要包含的站点并将本次录制保存为 JMeter 脚本。用户可通过本地安装的 JMeter 打开并运行该脚本,或直接将脚本上传到 MeterSphere 中发起接口/性能测试而无需在本地安装 JMeter。 更新说明: v1.2.3 - reverse: 导出jmx特殊字符转义
Información Básica de la Extensión
Nombre | |
ID | dfikodepgdmofjbffdhpakgkachehgdj |
URL Oficial | https://chrome.google.com/webstore/detail/metersphere/dfikodepgdmofjbffdhpakgkachehgdj |
Descripción | MeterSphere Recorder |
Tamaño del Archivo | 1.85 MB |
Cantidad de Instalaciones | 1,000 |
Versión Actual | 1.2.4 |
Última Actualización | 2022-06-06 |
Fecha de Publicación | 2020-06-12 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | http://metersphere.io |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://metersphere.io |
URL de la Página de Ayuda | https://github.com/metersphere/chrome-extensions |
Idiomas Soportados | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MeterSphere", "description": "MeterSphere Recorder", "version": "1.2.4", "homepage_url": "https:\/\/www.metersphere.io", "browser_action": { "default_icon": "icon\/favicon.png", "default_popup": "main.html", "default_title": "MeterSphere" }, "icons": { "16": "icon\/favicon-16.png", "48": "icon\/favicon.png", "128": "icon\/favicon-128.png" }, "background": { "scripts": [ "common\/browser-polyfill.js", "jquery\/jquery-3.4.1.min.js", "js\/background.js", "js\/URI.js" ] }, "content_scripts": [ { "all_frames": false, "js": [ "common\/browser-polyfill.js", "jquery\/jquery-3.4.1.min.js", "jquery\/jquery-ui.min.js", "js\/content-script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "tabs", "activeTab", "webRequest", "contextMenus", "downloads", "webNavigation", "notifications", "storage", "unlimitedStorage", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*", "browsingData" ], "web_accessible_resources": [ "html\/transaction-ui.html", "html\/transaction-controls.html" ] } |