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 |
官方網址 | 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'" } |