requesttp

requesttp - a tool for http requests

requesttp란 무엇입니까?

requesttp은(는) aviv1ron1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "requesttp - a tool for http requests"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        requesttp is a tool for sending HTTP requests, especially useful for REST services testing and exploring API's.
Features:
request GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS
set request headers and body
save favorite URL's
save favorite headers or add from macro's
tools for formatting body data as urlencoded or JSON automatically
view the response formatted as HTML, XML, JSON or CSS

the code is open source under MIT license on github:
https://github.com/aviv1ron1/requesttp                    

확장 프로그램 기본 정보

이름 requesttp requesttp
ID ghbmhocepnpmoaaljdollneebioacadj
공식 URL https://chrome.google.com/webstore/detail/requesttp/ghbmhocepnpmoaaljdollneebioacadj
설명 requesttp - a tool for http requests
파일 크기 635 KB
설치 횟수 408
현재 버전 1.94
최근 업데이트 2017-10-18
출시 날짜 2017-10-18
평점 4.80/5 총 5 개의 평점
개발자 aviv1ron1
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "requesttp",
    "version": "1.94",
    "manifest_version": 2,
    "description": "requesttp - a tool for http requests",
    "icons": {
        "16": "resources\/requesttpicon16.png",
        "32": "resources\/requesttpicon32.png",
        "48": "resources\/requesttpicon48.png",
        "128": "resources\/requesttpicon128.png"
    },
    "browser_action": {
        "default_icon": "resources\/requesttpicon24.png",
        "default_title": "requesttp"
    },
    "options_page": "main.html",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "clipboardWrite"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}