Дополнения для браузера Firefox
  • Расширения
  • Темы
    • для Firefox
    • Словари и языковые пакеты
    • Другие версии браузера
    • Дополнения для Android
Войти
Значок дополнения

История версий «RESTer» – 25 версий

RESTer от Jan

Оценено на 4,8 из 5
Оценено на 4,8 из 5
5
92
4
13
3
3
2
0
1
0
История версий «RESTer» – 25 версий
  • Будьте осторожны со старыми версиями! Эти версии отображаются только для сведения и в целях тестирования.Вы всегда должны использовать последнюю версию дополнения.

  • Последняя версия

    Версия 4.15.0

    Выпущено 1 мая 2026 г. — 2,18 МБ
    Работает с firefox 63.0 и выше
    Added color to environments and moved the environment indicator from the "Environment" navigation item to the top of the sidebar.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать Firefox и установить расширение
    Скачать файл
  • Старые версии

    Версия 4.14.1

    Выпущено 29 мар. 2025 г. — 2,18 МБ
    Работает с firefox 63.0 и выше
    • Add button to make sidebar wider on wide screens

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.13.0

    Выпущено 14 февр. 2025 г. — 2,18 МБ
    Работает с firefox 63.0 и выше
    • When exporting history entries, also export entries not attached to any saved request. Thanks @uoyniXnaH.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.12.0

    Выпущено 25 нояб. 2023 г. — 2,17 МБ
    Работает с firefox 63.0 и выше
    - Use `GET` request method by default.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.11.0

    Выпущено 23 июля 2022 г. — 2,15 МБ
    Работает с firefox 63.0 и выше
    Added

    - RESTer will now download response bodies as files, if the response has a `Content-Disposition: attachment` header. Thanks @zenglanmu.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.10.0

    Выпущено 24 мая 2022 г. — 2,15 МБ
    Работает с firefox 63.0 и выше
    Added

    - Add "Send Request In New Tab" menu entry, which opens the current request URL in a new tab.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.9.1

    Выпущено 18 мар. 2022 г. — 2,15 МБ
    Работает с firefox 63.0 и выше
    Fixed

    - Always encode URL query params (name and value) when "Toogle URL params" is on. This fixes an issue where entering # in a query param would truncate the remaining URL.
    - Fixes OAuth 2 issues with invalid Origin header in certain cases.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.9.0

    Выпущено 13 февр. 2022 г. — 2,15 МБ
    Работает с firefox 63.0 и выше
    Added

    - Support `NaN` in JSON for pretty printing/beautifying

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.8.2

    Выпущено 26 янв. 2022 г. — 2,15 МБ
    Работает с firefox 63.0 и выше
    Fixed

    - Only url-encode variables in request body.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.8.1

    Выпущено 23 янв. 2022 г. — 2,15 МБ
    Работает с firefox 63.0 и выше
    Fixed

    - Encode variables in form encoded request body.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.8.0

    Выпущено 17 нояб. 2021 г. — 2,15 МБ
    Работает с firefox 63.0 и выше
    The webRequest and webRequestBlocking permissions are not optional. RESTer requests them automatically the first time a request is sent. Neither Firefox, nor Chrome currently show a permission prompt for that. Making those permissions optional allows RESTer to work in environments where those permissins are blocked (e.g. by Chrome Enterprise Policy).

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.7.0

    Выпущено 24 июня 2021 г. — 2,13 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    Added

    - Troubleshooting advice for network errors
    - Heading and "no items" text to environment selection dialog
    - Tooltip for URL parameters toggle button

    Changed

    - Use normal button to add new environment because the floating action button is hard to see

    Fixed

    - RESTer doesn't switch to plain body input if request content type is `text/plain`

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.6.0

    Выпущено 23 июня 2021 г. — 2,13 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    JSON pretty printing/beautifying no longer modifies certain values in the JSON, e.g. big numbers.

    Before JSON was pretty printed using `JSON.stringify(JSON.parse(str), null, 4)`. This is easy and fast. But it normalizes values, e.g. a value like `0.0` changes to `0`. Since numbers are represented as `Number` after being parsed, very big numbers loose precision, e.g. `55871516310040211` turns into `55871516310040210`.

    The new formatting is a bit slower but does not modify any except whitespace.

    I think this is worth the performance cost. RESTer should not modify the response just because it pretty prints it. This could be very confusing.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.5.2

    Выпущено 10 июня 2021 г. — 2,13 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    Fixed bug where Chrome would not send custom headers if an authorization was selected

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.5.1

    Выпущено 9 июня 2021 г. — 2,13 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    Don't remove manually entered Cookie header when selecting an Authorization in the Authorization tab

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.5.0

    Выпущено 2 июня 2021 г. — 2,13 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    PKCE support for OAuth 2 authorization code flow

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.4.0

    Выпущено 5 мар. 2021 г. — 2,13 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    User name is now allowd to be empty in the basic auth dialog.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.3.3

    Выпущено 26 февр. 2021 г. — 2,13 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    Fixed shell escaping for curl command generation. Query parameters and single quotes should now be escaped properly.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.3.2

    Выпущено 7 окт. 2020 г. — 2,13 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    Fixed

    - Always render response body preview on white background. This improves color contrasts, especially with the Dark theme.
    - Update dependencies.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.3.1

    Выпущено 16 сент. 2020 г. — 2,13 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    - Update dependencies

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.3.0

    Выпущено 16 авг. 2020 г. — 2,13 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    Added

    - Some OAuth 2 servers don't supports URL-encoded credentials in HTTP Basic authentication headers ([#139])(https://github.com/frigus02/RESTer/issues/139)). RESTer now allows to turn URL-encoding off by choosing the "HTTP Basic authentication (no encode)" authentication option.
    - Added dialog in "Organize" page, which allows you to quickly delete multiple requests.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.2.0

    Выпущено 14 июня 2020 г. — 2,14 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    Added

    - Allow entering a custom title for basic authentication tokens.
    - Add OAuth 2 config title to generated tokens.

    Changed

    - Variable names can now only contain alphanumeric characters as well as `$._-`. This fixes an annoying behaviour when JSON objects were incorrectly identified as variables.
    - Increase width of environment variable dialog.
    - When an authentication token has been generated using the _Custom_ option and it's base64 encoded, show "Base64" in the token title.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.1.1

    Выпущено 2 мая 2020 г. — 2,14 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    Fixed Postman export when there was a request with the same title as the collection of another request.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.1.0

    Выпущено 12 апр. 2020 г. — 2,14 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    Added checkbox option for automatically encode token value to base64 string for custom authorization header dialog.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
  • Версия 4.0.0

    Выпущено 14 мар. 2020 г. — 2,14 МБ
    Работает с firefox 63.0 и выше, android 63.0-68.*
    Changed

    - RESTer now requires Firefox 63 or Chrome 67.
    - No longer append "Copy" to a request title when using the "Duplicate request" function. It turned out to be more annoying than helpful.

    Исходный код выпущен на условиях: Лицензия MIT

    Скачать файл
Перейти на домашнюю страницу Mozilla

Дополнения

  • О сайте
  • Блог дополнений для Firefox
  • Мастерская расширений
  • Центр разработчика
  • Политики разработчика
  • Блог Сообщества
  • Форум
  • Сообщить об ошибке
  • Руководство по написанию отзывов

Скачать

  • Download Firefox
  • Windows
  • macOS
  • iOS
  • Android
  • Linux
  • All

Последние сборки

  • Nightly
  • Beta

Firefox для бизнеса

  • Enterprise

Сообщество

  • Connect
  • Contribute
  • Developer

Подписаться

  • Instagram
  • YouTube
  • TikTok
  • Bluesky
  • Podcast
  • Приватность
  • Куки
  • Юридическая информация

За исключением случаев, описанных здесь, содержимое этого сайта лицензировано на условиях лицензии Creative Commons «Атрибуция — На тех же условиях» версии 3.0 или любой более поздней версии.