requesttp

requesttp - a tool for http requests

requesttpคืออะไร?

requesttp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aviv1ron1 และคุณลักษณะหลักของมันคือ "requesttp - a tool for http requests"

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

screenshot
screenshot
screenshot

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

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

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

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