Apiary Browser Extension

Apiary Browser Extension

Что такое Apiary Browser Extension?

Apiary Browser Extension - это расширение Chrome, разработанное https://apiary.io, и его основная функция - "Apiary Browser Extension".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Apiary Browser Extension

Скачайте файлы расширений Apiary Browser Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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