Jan Kühle

Projects

RESTer

Build Status

A REST client for almost any web service.

Download for: Firefox | Chrome

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?

Develop

Prerequisites

The project requires:

  • node >= 20
  • yarn >= 1

Install all other dependencies with the command:

yarn install

Run locally

To build the add-on run:

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:

Package

To create packages for AMO and the Chrome Web Store run:

yarn build
yarn lint
yarn test
yarn test:e2e
yarn package

Afterwards you will find the generated files in the folder package.

Contributors