RestMan
RESTMan is a browser extension to work on http requests.
RestManคืออะไร?
RestMan เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joaquin Sargiotto และคุณลักษณะหลักของมันคือ "RESTMan is a browser extension to work on http requests."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RestMan
ดาวน์โหลดไฟล์ส่วนขยาย RestMan ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
RESTMan is an extension to work on REST APIs over http and https. How to use: Click on the RESTMan Icon that displays on your taskbar. Type the url in the main input field and choose the method to use: GET/POST/PUT/DELETE/PATCH. Click on the arrow "Send" or press Ctrl+Enter. You'll see info about the response (time, size, type) and you'll be able to see the content response in the response section. What's new: # v0.7.2 Fixes - #29 Disable "tabs" permission. # v0.7.1 Fixes - #29 Fixes browser's autocomplete dialog appearing on top of Restman's history dialog. # v0.7 Fixes - #23 Fixed background in method drop down on windows. New: - #25 Share request. - #24 Add OPTIONS to the list of http methods. # v0.6 Fixes: - #11 Different color for every HTTP method. - #18 Extension no longer uses resources when it's not being used. New: - New dark theme! Based on material design colors. - Side by side layout for Body and Response panels. - Options popup page to save theme and layout for future sessions. - Improved history dropdown. Adding ability to move through options with up/down keys, better mouse click handling, options get scrolled into view when out of scroll, pressing enter to select option. - More url space. - Improved "running" indicator. # v0.5 Fixes: - Fixed replacement of line endings in request editor. - Added error message for failed requests. New: - Improved history dialog. It now popus from the url bar, it filters entries based on what's been typed. - New HTML preview for responses. It will render the response as an html. Due to security issues, some scripts, images and other resources might be blocked. - Added extension version in main windows. # v0.3 - Major UI overhaul. - Extension won't duplicate entries in history. - Adding clear all button to headers and form body sections. - Ctrl+Enter sends request. - Pressing enter on url textbox sends request. - Several small fixes. # v0.2 - Updated foundation to 5.4.6 - Updated beautify to 1.5.4 - Minor UI tweaks. # v0.1 - GET, POST, PUT, PATCH, DELETE requests. - Custom request headers. - Raw and Form data body. - View highlighted response. - View response headers.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | RestMan |
ID | ihgpcfpkpmdcghlnaofdmjkoemnlijdi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/restman/ihgpcfpkpmdcghlnaofdmjkoemnlijdi |
คำอธิบาย | RESTMan is a browser extension to work on http requests. |
ขนาดไฟล์ | 473 KB |
จำนวนการติดตั้ง | 57,005 |
เวอร์ชันปัจจุบัน | 0.7.2 |
อัปเดตครั้งล่าสุด | 2022-09-05 |
วันที่เผยแพร่ | 2020-05-08 |
คะแนน | 4.61/5 รวมทั้งหมด 33 คะแนน |
ผู้พัฒนา | Joaquin Sargiotto |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/jsargiot/restman |
URL หน้าช่วยเหลือ | https://github.com/jsargiot/restman |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RestMan", "author": "Joaquin Sargiotto", "description": "RESTMan is a browser extension to work on http requests.", "version": "0.7.2", "icons": { "32": "img\/icon32.png", "64": "img\/icon64.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "permissions": [ "http:\/\/*\/", "http:\/\/*\/*", "https:\/\/*\/", "https:\/\/*\/*", "storage" ], "browser_action": { "default_icon": "img\/icon32.png", "default_title": "RestMan" }, "incognito": "split", "content_security_policy": "default-src 'self'; connect-src *; script-src 'self'; style-src 'self' * blob: data: 'unsafe-inline'; img-src 'self' * data:;" } |