MeterSphere

MeterSphere Recorder

MeterSphereคืออะไร?

MeterSphere เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://metersphere.io และคุณลักษณะหลักของมันคือ "MeterSphere Recorder"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MeterSphere

ดาวน์โหลดไฟล์ส่วนขยาย MeterSphere ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}