requesttp
requesttp - a tool for http requests
requesttp là gì?
requesttp là một tiện ích mở rộng Chrome được phát triển bởi aviv1ron1, và tính năng chính của nó là "requesttp - a tool for http requests".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng requesttp
Tải xuống các tệp mở rộng requesttp dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ghbmhocepnpmoaaljdollneebioacadj |
URL Chính Thức | https://chrome.google.com/webstore/detail/requesttp/ghbmhocepnpmoaaljdollneebioacadj |
Mô tả | requesttp - a tool for http requests |
Kích Thước Tệp | 635 KB |
Số Lần Cài Đặt | 408 |
Phiên Bản Hiện Tại | 1.94 |
Cập Nhật Lần Cuối | 2017-10-18 |
Ngày Phát Hành | 2017-10-18 |
Đánh Giá | 4.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | aviv1ron1 |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |