RESTED
A REST client for the rest of us
什麼是RESTED?
RESTED是由espen開發的Chrome擴展程式,該擴展的主要功能是“A REST client for the rest of us”。
擴展截圖
下載RESTED擴展crx文件
下載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 |
官方網址 | 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": [ " |