MeterSphere

MeterSphere Recorder

MeterSphere란 무엇입니까?

MeterSphere은(는) http://metersphere.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "MeterSphere Recorder"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

MeterSphere 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

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

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

확장 프로그램 기본 정보

이름 MeterSphere MeterSphere
ID dfikodepgdmofjbffdhpakgkachehgdj
공식 URL https://chrome.google.com/webstore/detail/metersphere/dfikodepgdmofjbffdhpakgkachehgdj
설명 MeterSphere Recorder
파일 크기 1.85 MB
설치 횟수 1,000
현재 버전 1.2.4
최근 업데이트 2022-06-06
출시 날짜 2020-06-12
평점 5.00/5 총 4 개의 평점
개발자 http://metersphere.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://metersphere.io
도움말 페이지 URL https://github.com/metersphere/chrome-extensions
지원되는 언어 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"
    ]
}