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은(는) Vikrant Kandgaonkar에 의해 개발된 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…"입니다.

확장 프로그램 스크린샷

screenshot

Open API 3 Github Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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\/*"
    ]
}