API Spots

APIs for Humans

API Spots란 무엇입니까?

API Spots은(는) https://apispots.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "APIs for Humans"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

API Spots 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A Collection Of Human Friendly API Tools.

The API Spots extension is a collection of tools for anyone interested in discovering, exploring and interacting with APIs without the need for a technology background.

On the modern web APIs are the driving force of the Internet and even if you are not a developer you can still have access to important data and resources.

Built entirely on top of open source technologies and specifications. Following the lead of top technology experts and supporting the open source community efforts.

The API Spots project is leveraging widely adopted industry standards like the Open API specification ensuring interoperability with other tools.

What you can do with the extension:

- Load and visualize an Open API (f.k.a. Swagger) specification
- Detect and get notifications on valid Open API documents as you browse the web
- Visualize and explore an API using a graph tool
- List API operations and endpoints
- List API data models
- Interact with an API through data stories
- Browse public Open API catalogues and discover new APIs
- Browse Open API collections through APIS.json specification                    

확장 프로그램 기본 정보

이름 API Spots API Spots
ID kaggdmjacnelneophkagkdljffninnpd
공식 URL https://chromewebstore.google.com/detail/api-spots/kaggdmjacnelneophkagkdljffninnpd
설명 APIs for Humans
파일 크기 5.88 MB
설치 횟수 500
현재 버전 2.4.4
최근 업데이트 2022-07-06
출시 날짜 2019-03-08
평점 5.00/5 총 3 개의 평점
개발자 https://apispots.github.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://apispots.github.io
도움말 페이지 URL https://apispots.github.io/faq
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "API Spots",
    "short_name": "apispots",
    "description": "APIs for Humans",
    "version": "2.4.4",
    "author": "Chris Spiliotopoulos",
    "homepage_url": "https:\/\/apispots.github.io",
    "icons": {
        "128": "assets\/images\/logos\/logo-128.png",
        "64": "assets\/images\/logos\/logo-64.png",
        "16": "assets\/images\/logos\/logo-16.png"
    },
    "background": {
        "scripts": [
            "dist\/background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "dist\/content.bundle.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "notifications",
        "storage"
    ],
    "browser_action": {
        "default_title": "API Spots",
        "default_icon": "assets\/images\/logos\/logo-128.png"
    },
    "web_accessible_resources": [
        "data\/*.js"
    ]
}