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은(는) https://vrest.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "vREST is an automated REST API Testing Tool. This extension records HTTP requests and their responses in vREST application."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

vREST - REST API Testing Tool 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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