Loadium Recorder

This extension helps Loadium users to write fast and better automate tests.

Loadium Recorderคืออะไร?

Loadium Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Testinium และคุณลักษณะหลักของมันคือ "This extension helps Loadium users to write fast and better automate tests."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Loadium Record & Play helps Loadium users to write fast and better-automated load tests. You can easily record, browse, upload, edit and run.
 
The Chrome extension records all HTTP/S requests, creates synced JMeter scripts and automatically uploads them to Loadium as a collection, where you can edit and execute the collection with just a single click. In addition, collections can be used repeatedly by editing.
 
No need to know and install JMeter for recording and running your performance tests.
 
FEATURE
- 100% Compatible with Apache JMeter.
- Runing tests without test scripting applications
- Editing your tests both locally and via Loadium
- Recording all HTTP/S requests made by your browser.
- Adding transaction labels (for JMeter) during recording
- Saving your tests as both json and jmx so you can use them again later.
- Running API Functional Test
- Storing your tests on Loadium
 
REQUIREMENTS
- Recommended minimum Chrome version is 58                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Loadium Recorder Loadium Recorder
ID eecaejegccegjjjngokgelmehfkmpico
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/loadium-recorder/eecaejegccegjjjngokgelmehfkmpico
คำอธิบาย This extension helps Loadium users to write fast and better automate tests.
ขนาดไฟล์ 1.58 MB
จำนวนการติดตั้ง 488
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2022-07-07
วันที่เผยแพร่ 2021-04-02
คะแนน 5.00/5 รวมทั้งหมด 39 คะแนน
ผู้พัฒนา Testinium
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://loadium.com
URL หน้านโยบายความเป็นส่วนตัว https://testinium.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Loadium Recorder",
    "description": "This extension helps Loadium users to write fast and better automate tests.",
    "version": "1.0.3",
    "icons": {
        "16": "assets\/img\/icons\/loadium-16.png",
        "48": "assets\/img\/icons\/loadium-48.png",
        "128": "assets\/img\/icons\/loadium-128.png"
    },
    "browser_action": {
        "default_icon": "assets\/img\/icons\/loadium-16.png",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js",
            "runtime.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.loadium.io\/*"
            ],
            "js": [
                "content.js",
                "runtime.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "",
        "webRequest"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}