Skip to content

Commit ff65236

Browse files
committed
v1.1.0
- The app now ignores many default uninteresting request and response headers - Fixed a bug affecting path parameters that could happen when parameterising similar paths - Add support for determining auth from HTTP authorization headers. So far, Bearer auth has been implemented
1 parent ec171e6 commit ff65236

31 files changed

Lines changed: 4077 additions & 617 deletions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ OpenAPI DevTools is a Chrome extension that generates OpenAPI specifications in
3333
- Instantly generate an OpenAPI 3.1 specification for any website or application just by using it
3434
- Automatically merges new request & response headers, bodies, and query parameters per endpoint
3535
- Click on a [path parameter](https://www.abstractapi.com/api-glossary/path-parameters) and the app will automatically merge existing and future matching requests
36-
- View the specification inside the tool using [Redocly](https://www.npmjs.com/package/redoc) and download with a click
36+
- View the specification inside the tool using [Redoc](https://www.npmjs.com/package/redoc) and download with a click
3737

3838
<p align="right">(<a href="#readme-top">back to top</a>)</p>
3939

@@ -75,7 +75,7 @@ To develop the project:
7575
- `npm run build`
7676
- Navigate to `chrome://extensions`
7777
- In the top right enable the `Developer mode` toggle
78-
- In the top left click `Load unpacked` and select the extracted `dist` directory
78+
- In the top left click `Load unpacked` and select the `dist` directory
7979
- You should now see the tool in Chrome DevTools. You can interact it with like a regular page, including inspection of the React app
8080
- [Extensions Reloader](https://chrome.google.com/webstore/detail/extensions-reloader/fimgfedafeadlieiabdeeaodndnlbhid) is suggested to update the tool after running `npm run build` and updating the `dist` directory
8181

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
3-
"name": "openapi-devtools",
4-
"version": "1.0.1",
3+
"name": "OpenAPI DevTools",
4+
"version": "1.1.0",
55
"devtools_page": "index.html",
66
"permissions": [],
77
"icons": {

package-lock.json

Lines changed: 22 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"framer-motion": "^10.16.4",
2121
"fuse.js": "^6.6.2",
2222
"genson-js": "^0.0.8",
23+
"http-auth-utils": "^5.0.1",
2324
"lodash": "^4.17.21",
2425
"openapi3-ts": "^4.1.2",
2526
"radix3": "^1.1.0",

public/gear.svg

Lines changed: 0 additions & 18 deletions
This file was deleted.

public/icon128.png

10 KB
Loading

public/icon16.png

815 Bytes
Loading

public/icon32.png

1.92 KB
Loading

public/icon48.png

2.5 KB
Loading

resources/circle-logo.png

42.2 KB
Loading

0 commit comments

Comments
 (0)