API Spots

APIs for Humans

什么是API Spots?

API Spots是由https://apispots.github.io开发的Chrome扩展程序,该扩展的主要功能是“APIs for Humans”。

扩展截图

screenshot
screenshot
screenshot

下载API Spots扩展crx文件

下载API Spots扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}