Open API 3 Github Viewer
If you have Open API yaml document on github and want a quick view? Here is your chrome extension. Navigate to an Open API yaml…
Что такое Open API 3 Github Viewer?
Open API 3 Github Viewer - это расширение Chrome, разработанное Vikrant Kandgaonkar, и его основная функция - "If you have Open API yaml document on github and want a quick view? Here is your chrome extension. Navigate to an Open API yaml…".
Снимки экрана расширения
Скачать файл CRX расширения Open API 3 Github Viewer
Скачайте файлы расширений Open API 3 Github Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
If you have Open API yaml document on github and want a quick view? Here is your chrome extension. Navigate to an Open API yaml spec on github and then click on the Extension icon. It will open a new tab where it will display nice HTML view of your Open API specification generated by https://github.com/Redocly/redoc Dev : Vikrant Kandgaonkar https://github.com/vikrantk365
Основная информация о расширении
Название | Open API 3 Github Viewer |
ID | ibejpheeklpjnlgkdpbfcbmflkookgjp |
Официальный URL | https://chromewebstore.google.com/detail/open-api-3-github-viewer/ibejpheeklpjnlgkdpbfcbmflkookgjp |
Описание | If you have Open API yaml document on github and want a quick view? Here is your chrome extension. Navigate to an Open API yaml… |
Размер файла | 544 KB |
Количество установок | 381 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2019-09-11 |
Дата публикации | 2019-09-10 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | Vikrant Kandgaonkar |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open API 3 Github Viewer", "version": "0.1.0", "manifest_version": 2, "icons": { "16": "assets\/favicon-16x16.png", "32": "assets\/favicon-32x32.png", "48": "assets\/favicon.ico" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/blob\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Open API 3 Github Viewer" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "background", "storage", "webNavigation", "*:\/\/github.com\/*" ] } |