Apiary Browser Extension

Apiary Browser Extension

Apiary Browser Extension란 무엇입니까?

Apiary Browser Extension은(는) https://apiary.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Apiary Browser Extension"입니다.

확장 프로그램 스크린샷

screenshot

Apiary Browser Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is an Apiary Console request calling extension. It’s using the browser’s capabilities to talk to the target server, but it does not suffer from all the CORS limitations.

More details are available on its Apiary Help site at https://help.apiary.io/tools/interactive-documentation/#console                    

확장 프로그램 기본 정보

이름 Apiary Browser Extension Apiary Browser Extension
ID cboekbiaoabkhgjdclenjpipclabkdga
공식 URL https://chromewebstore.google.com/detail/apiary-browser-extension/cboekbiaoabkhgjdclenjpipclabkdga
설명 Apiary Browser Extension
파일 크기 78.19 KB
설치 횟수 7,509
현재 버전 2.0.0
최근 업데이트 2019-05-25
출시 날짜 2019-05-25
개발자 https://apiary.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://apiary.io
도움말 페이지 URL https://help.apiary.io
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Apiary Browser Extension",
    "short_name": "Apiary",
    "description": "Apiary Browser Extension",
    "version": "2.0.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost:*\/*",
            "*:\/\/*.apiary.test:*\/*",
            "*:\/\/*.apiary.io\/*",
            "*:\/\/*.apiary-staging.in\/*",
            "*:\/\/*.apicurious.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "build\/extension.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/localhost\/*",
                "*:\/\/*.apiary.io\/*",
                "*:\/\/*.apiary-staging.in\/*",
                "*:\/\/*.apicurious.com\/*"
            ],
            "js": [
                "build\/detect.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "icon16.png"
    ]
}