Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frigus02/rester
A REST client for almost any web service (Firefox and Chrome Extension)
https://github.com/frigus02/rester
addon chrome extension firefox http-client rest-client
Last synced: 1 day ago
JSON representation
A REST client for almost any web service (Firefox and Chrome Extension)
- Host: GitHub
- URL: https://github.com/frigus02/rester
- Owner: frigus02
- License: mit
- Created: 2015-08-17T15:58:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-08T07:58:59.000Z (10 months ago)
- Last Synced: 2024-04-08T08:57:07.248Z (10 months ago)
- Topics: addon, chrome, extension, firefox, http-client, rest-client
- Language: JavaScript
- Homepage: https://addons.mozilla.org/firefox/addon/rester
- Size: 9.26 MB
- Stars: 329
- Watchers: 10
- Forks: 32
- Open Issues: 38
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# RESTer
[![Build Status](https://travis-ci.com/frigus02/RESTer.svg?branch=master)](https://travis-ci.com/frigus02/RESTer)
A REST client for almost any web service.
Download for: [Firefox](https://addons.mozilla.org/firefox/addon/rester) | [Chrome](https://chrome.google.com/webstore/detail/rester/eejfoncpjfgmeleakejdcanedmefagga)
![](docs/preview.png)
You can...
- perform HTTP requests with any method, URL, body and custom headers.
- save favorite requests and organize them in collections.
- view a history of your requests, which includes the full request and response.The add-on supports the following goodies:
- Create and save your authorization headers with Basic, OAuth 2 or Cookie authentication.
- Use placeholders in saved requests.
- Use shortcuts for the frequently used actions (try pressing "?" to see the available shortcuts for the current context).It requires a few permissions to do this. [Which permissions and why?](./docs/permissions.md)
## Develop
### Prerequisites
The project requires:
- `node` >= 20
- `yarn` >= 1Install all other dependencies with the command:
```command
yarn install
```### Run locally
To build the add-on run:
```command
yarn start
```This will generate a working add-on in the folder _build_. It will also watch files for changes and update the folder accordingly.
To load the add-on in the browser:
- **Firefox**: Go to [about:debugging](about:debugging), click on "Load Temporary Add-on..." and select the file _manifest.json_ inside the _build_ folder.
- **Chrome**: Go to [chrome://extensions](chrome://extensions), make sure "Developer mode" is turned on, click on "Load unpacked" and select the folder _build_.### Package
To create packages for AMO and the Chrome Web Store run:
```command
yarn build
yarn lint
yarn test
yarn test:e2e
yarn package
```Afterwards you will find the generated files in the folder _package_.
## Contributors
- [Adam Zimmerman](https://github.com/AdamZ)
- [Ferenc Czina](https://github.com/fricci)
- [Henning Waack](https://github.com/HenningWaack)
- [Yusup Hambali](https://github.com/sup-ham)
- [zenglanmu](https://github.com/zenglanmu)