RESTED
A REST client for the rest of us
RESTEDคืออะไร?
RESTED เป็นส่วนขยายของ Chrome ที่พัฒนาโดย espen และคุณลักษณะหลักของมันคือ "A REST client for the rest of us"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RESTED
ดาวน์โหลดไฟล์ส่วนขยาย RESTED ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
RESTED is a new take on rest clients on Firefox. It is meant to be easy to use to let you work as effective as possible. It features all the most commonly used HTTP methods, setting headers, saving requests to local storage, and more. Some of the neat features of this extension are: URL templating: If you have a parameter that is shared across several rest calls, you can template your string. Example - rest-service.com/user/{{userId}}. You can then set userId in a seperate panel, and it will be resolved across all your different requests. Collections: Save your requests to local storage for easy reuse later. Basic auth and custom headers: Easily set basic auth and custom headers that are passed alongside the request. Imports: Import data from HAR (HTTP Archive), or from a Postman collection Modern design: Based on modern technology and minimalist web design, this extension is anything but dated. It also features changeable themes to make it yours. Since this is a relatively new project, I am also happy to announce that it is also awesomely easy to contribute to the project! Everything is javascript and html, so come join! All contributions welcome. Read more on github
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | RESTED |
ID | eelcnbccaccipfolokglfhhmapdchbfg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/rested/eelcnbccaccipfolokglfhhmapdchbfg |
คำอธิบาย | A REST client for the rest of us |
ขนาดไฟล์ | 1.53 MB |
จำนวนการติดตั้ง | 38,526 |
เวอร์ชันปัจจุบัน | 2.5.0 |
อัปเดตครั้งล่าสุด | 2021-12-14 |
วันที่เผยแพร่ | 2019-07-23 |
คะแนน | 3.92/5 รวมทั้งหมด 84 คะแนน |
ผู้พัฒนา | espen |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/esphen/RESTED |
URL หน้าช่วยเหลือ | https://github.com/esphen/RESTED/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RESTED", "version": "2.5.0", "description": "A REST client for the rest of us", "homepage_url": "https:\/\/github.com\/esphen\/RESTED", "manifest_version": 2, "minimum_chrome_version": "60.0", "icons": { "16": "dist\/img\/favicon\/favicon-16x16.png", "32": "dist\/img\/favicon\/favicon-32x32.png", "64": "dist\/img\/favicon\/favicon-64x64.png", "96": "dist\/img\/favicon\/favicon-96x96.png", "128": "dist\/img\/favicon\/favicon-128x128.png" }, "browser_action": { "default_title": "Open RESTED tab", "default_icon": { "16": "dist\/img\/favicon\/favicon-16x16.png", "32": "dist\/img\/favicon\/favicon-32x32.png", "64": "dist\/img\/favicon\/favicon-64x64.png", "96": "dist\/img\/favicon\/favicon-96x96.png", "128": "dist\/img\/favicon\/favicon-128x128.png" } }, "background": { "scripts": [ "main.js" ] }, "permissions": [ " |