Apiary Browser Extension

Apiary Browser Extension

Was ist Apiary Browser Extension?

Apiary Browser Extension ist eine Chrome-Erweiterung, die von https://apiary.io entwickelt wurde, und ihr Hauptmerkmal ist "Apiary Browser Extension".

Erweiterungsscreenshots

screenshot

Apiary Browser Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Apiary Browser Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Apiary Browser Extension Apiary Browser Extension
ID cboekbiaoabkhgjdclenjpipclabkdga
Offizielle URL https://chromewebstore.google.com/detail/apiary-browser-extension/cboekbiaoabkhgjdclenjpipclabkdga
Beschreibung Apiary Browser Extension
Dateigröße 78.19 KB
Installationsanzahl 7,509
Aktuelle Version 2.0.0
Letztes Update 2019-05-25
Veröffentlichungsdatum 2019-05-25
Entwickler https://apiary.io
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://apiary.io
Hilfeseite URL https://help.apiary.io
Unterstützte Sprachen 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"
    ]
}