Render OpenAPI
Render OpenAPI declarations in browser using ReDoc
What is Render OpenAPI?
Render OpenAPI is a Chrome extension developed by dottedmag, and its main feature is "Render OpenAPI declarations in browser using ReDoc".
Download Render OpenAPI Extension CRX File
Download Render OpenAPI extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Navigate to OpenAPI declaration and it will be rendered right in the browser. Extension Basic Information
| Name | |
| ID | olikibdgmamijdjopchbnlpeajgihgkh |
| Official URL | https://chrome.google.com/webstore/detail/render-openapi/olikibdgmamijdjopchbnlpeajgihgkh |
| Description | Render OpenAPI declarations in browser using ReDoc |
| File Size | 3.59 KB |
| Installation Count | 81 |
| Current Version | 1.0.1 |
| Last Updated | 2018-05-21 |
| Publish Date | 2018-05-21 |
| Rating | 5.00/5 Total 1 Ratings |
| Developer | dottedmag |
| Payment Type | free |
| Extension Website | https://github.com/dottedmag/render-openapi/ |
| Supported Languages | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Render OpenAPI",
"description": "Render OpenAPI declarations in browser using ReDoc",
"version": "1.0.1",
"content_scripts": [
{
"matches": [
"file:\/\/*\/*.yml",
"file:\/\/*\/*.yaml",
"*:\/\/*\/*.yml",
"*:\/\/*\/*.yaml",
"*:\/\/*\/*.yml?*",
"*:\/\/*\/*.yaml?*"
],
"js": [
"redocify.js"
]
}
]
} | |