apic cors extension

This is a helper plugin for apic (https://apic.app) to enable CORS requests by adding 'Allow-Control-Allow-Origin: *' header.

Was ist apic cors extension?

apic cors extension ist eine Chrome-Erweiterung, die von https://apic.app entwickelt wurde, und ihr Hauptmerkmal ist "This is a helper plugin for apic (https://apic.app) to enable CORS requests by adding 'Allow-Control-Allow-Origin: *' header.".

Erweiterungsscreenshots

screenshot

apic cors extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie apic cors 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

                        The web version of APIC (API testing module) suffers with the limitation of CORS where browsers don't allow access to resources of other domains unless the response contains Access-Control-Allow-Origin header with a value of "*" or "https://apic.app" (without the quotes). To overcome this issue you need to install this extension that will allow APIC to access resources on other domains by adding Access-Control-Allow-Origin: * header.                    

Grundlegende Informationen zur Erweiterung

Name apic cors extension apic cors extension
ID dejjobgejdajdjjhjcindbjcfohoiehn
Offizielle URL https://chromewebstore.google.com/detail/apic-cors-extension/dejjobgejdajdjjhjcindbjcfohoiehn
Beschreibung This is a helper plugin for apic (https://apic.app) to enable CORS requests by adding 'Allow-Control-Allow-Origin: *' header.
Dateigröße 75.58 KB
Installationsanzahl 447
Aktuelle Version 1.2.1
Letztes Update 2022-09-10
Veröffentlichungsdatum 2019-07-28
Entwickler https://apic.app
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://apic.app
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "apic cors extension",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "This is a helper plugin for apic (https:\/\/apic.app) to enable CORS requests by adding 'Allow-Control-Allow-Origin: *' header.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "64": "icon_64.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "off.png",
        "default_title": "apic cors extension",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "web_accessible_resources": [
        "on.png",
        "off.png"
    ]
}