MeterSphere

MeterSphere Recorder

What is MeterSphere?

MeterSphere is a Chrome extension developed by http://metersphere.io, and its main feature is "MeterSphere Recorder".

Extension Screenshots

screenshot
screenshot
screenshot

Download MeterSphere Extension CRX File

Download MeterSphere extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        MeterSphere 配套的浏览器插件,该插件可将用户在浏览器操作时的 HTTP 请求记录下来并生成 JMX 文件(JMeter 脚本文件),快速在 MeterSphere 中进行接口测试或性能测试。

当开启录制按钮后,MeterSphere 浏览器插件会记录浏览器发送的所有 HTTP/S 请求,录制停止后用户可选择需要包含的站点并将本次录制保存为 JMeter 脚本。用户可通过本地安装的 JMeter 打开并运行该脚本,或直接将脚本上传到 MeterSphere 中发起接口/性能测试而无需在本地安装 JMeter。

更新说明:
v1.2.3
- reverse: 导出jmx特殊字符转义                    

Extension Basic Information

Name MeterSphere MeterSphere
ID dfikodepgdmofjbffdhpakgkachehgdj
Official URL https://chrome.google.com/webstore/detail/metersphere/dfikodepgdmofjbffdhpakgkachehgdj
Description MeterSphere Recorder
File Size 1.85 MB
Installation Count 1,000
Current Version 1.2.4
Last Updated 2022-06-06
Publish Date 2020-06-12
Rating 5.00/5 Total 4 Ratings
Developer http://metersphere.io
Email [email protected]
Payment Type free
Extension Website https://metersphere.io
Help Page URL https://github.com/metersphere/chrome-extensions
Supported Languages 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"
    ]
}