requesttp
requesttp - a tool for http requests
什么是requesttp?
requesttp是由aviv1ron1开发的Chrome扩展程序,该扩展的主要功能是“requesttp - a tool for http requests”。
扩展截图
下载requesttp扩展crx文件
下载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
扩展基本信息
名称 | |
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'" } |