MeterSphere
MeterSphere Recorder
O que é MeterSphere?
MeterSphere é uma extensão do Chrome desenvolvida por http://metersphere.io, e sua principal característica é "MeterSphere Recorder".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão MeterSphere
Baixe arquivos de extensão MeterSphere 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
MeterSphere 配套的浏览器插件,该插件可将用户在浏览器操作时的 HTTP 请求记录下来并生成 JMX 文件(JMeter 脚本文件),快速在 MeterSphere 中进行接口测试或性能测试。 当开启录制按钮后,MeterSphere 浏览器插件会记录浏览器发送的所有 HTTP/S 请求,录制停止后用户可选择需要包含的站点并将本次录制保存为 JMeter 脚本。用户可通过本地安装的 JMeter 打开并运行该脚本,或直接将脚本上传到 MeterSphere 中发起接口/性能测试而无需在本地安装 JMeter。 更新说明: v1.2.3 - reverse: 导出jmx特殊字符转义
Informações Básicas da Extensão
Nome | |
ID | dfikodepgdmofjbffdhpakgkachehgdj |
URL Oficial | https://chrome.google.com/webstore/detail/metersphere/dfikodepgdmofjbffdhpakgkachehgdj |
Descrição | MeterSphere Recorder |
Tamanho do Arquivo | 1.85 MB |
Contagem de Instalações | 1,000 |
Versão Atual | 1.2.4 |
Última Atualização | 2022-06-06 |
Data de Publicação | 2020-06-12 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | http://metersphere.io |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://metersphere.io |
URL da Página de Ajuda | https://github.com/metersphere/chrome-extensions |
Idiomas Suportados | 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" ] } |