MeterSphere
MeterSphere Recorder
Cos'è MeterSphere?
MeterSphere è un'estensione di Chrome sviluppata da http://metersphere.io, e la sua funzione principale è "MeterSphere Recorder".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MeterSphere
Scarica i file di estensione MeterSphere in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
MeterSphere 配套的浏览器插件,该插件可将用户在浏览器操作时的 HTTP 请求记录下来并生成 JMX 文件(JMeter 脚本文件),快速在 MeterSphere 中进行接口测试或性能测试。 当开启录制按钮后,MeterSphere 浏览器插件会记录浏览器发送的所有 HTTP/S 请求,录制停止后用户可选择需要包含的站点并将本次录制保存为 JMeter 脚本。用户可通过本地安装的 JMeter 打开并运行该脚本,或直接将脚本上传到 MeterSphere 中发起接口/性能测试而无需在本地安装 JMeter。 更新说明: v1.2.3 - reverse: 导出jmx特殊字符转义
Informazioni di Base sull'Estensione
Nome | |
ID | dfikodepgdmofjbffdhpakgkachehgdj |
URL Ufficiale | https://chrome.google.com/webstore/detail/metersphere/dfikodepgdmofjbffdhpakgkachehgdj |
Descrizione | MeterSphere Recorder |
Dimensione del File | 1.85 MB |
Conteggio Installazioni | 1,000 |
Versione Corrente | 1.2.4 |
Ultimo Aggiornamento | 2022-06-06 |
Data di Pubblicazione | 2020-06-12 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | http://metersphere.io |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://metersphere.io |
URL della Pagina di Aiuto | https://github.com/metersphere/chrome-extensions |
Lingue Supportate | 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" ] } |