vREST - REST API Testing Tool

vREST is an automated REST API Testing Tool. This extension records HTTP requests and their responses in vREST application.

vREST - REST API Testing Toolคืออะไร?

vREST - REST API Testing Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://vrest.io และคุณลักษณะหลักของมันคือ "vREST is an automated REST API Testing Tool. This extension records HTTP requests and their responses in vREST application."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย vREST - REST API Testing Tool

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

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

                        This extension works as part of the hosted application vREST (https://vrest.io - An Online tool for Automated Testing, Mocking, Automated Recording of REST / RESTful / HTTP APIs). 

It is a very simple extension, which records the HTTP requests of web application under test and also records their parameters, headers, responses and it will automatically store them as test cases in vREST. It can be configured to filter out HTTP requests according to content type and URL pattern while recording.

More info about vREST
  - A simple and intuitive tool to quickly validate your REST APIs.
  - Deliver zero defect web applications with very less effort in API testing.
  - Works in hosted mode (https://vrest.io)
  - No skilled resources required to validate your web application.
  - De-couple your frontend development with backend development with easy to use Mock Server
  - Ease of maintenance over a span of releases.                    

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

ชื่อ vREST - REST API Testing Tool vREST - REST API Testing Tool
ID jnhibbjmekoijdjaopflcjbjieamifhh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vrest-rest-api-testing-to/jnhibbjmekoijdjaopflcjbjieamifhh
คำอธิบาย vREST is an automated REST API Testing Tool. This extension records HTTP requests and their responses in vREST application.
ขนาดไฟล์ 194 KB
จำนวนการติดตั้ง 5,802
เวอร์ชันปัจจุบัน 1.2.9
อัปเดตครั้งล่าสุด 2021-03-02
วันที่เผยแพร่ 2019-11-30
คะแนน 4.38/5 รวมทั้งหมด 52 คะแนน
ผู้พัฒนา https://vrest.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://vrest.io
URL หน้าช่วยเหลือ https://optimizory.atlassian.net/servicedesk/customer/portal/2
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "vREST - REST API Testing Tool",
    "short_name": "vREST",
    "description": "vREST is an automated REST API Testing Tool. This extension records HTTP requests and their responses in vREST application.",
    "version": "1.2.9",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "author": "Dheeraj Kumar Aggarwal ",
    "background": {
        "scripts": [
            "vendor\/browser-request\/index.js",
            "scripts\/testRunner.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/pause-icon.png",
        "default_title": "vREST: Click to start capturing",
        "default_popup": "popup\/popup.html"
    },
    "options_page": "options.html",
    "permissions": [
        "debugger",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "web_accessible_resources": [
        "options.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "scripts\/vrest_content.js"
            ]
        }
    ]
}