apic cors extension

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

Hvad er apic cors extension?

apic cors extension er en Chrome-udvidelse udviklet af https://apic.app, og dens hovedfunktion er "This is a helper plugin for apic (https://apic.app) to enable CORS requests by adding 'Allow-Control-Allow-Origin: *' header.".

Udvidelsesskærmbilleder

screenshot

Download apic cors extension-udvidelses-CRX-fil

Download apic cors extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn apic cors extension apic cors extension
ID dejjobgejdajdjjhjcindbjcfohoiehn
Officiel URL https://chromewebstore.google.com/detail/apic-cors-extension/dejjobgejdajdjjhjcindbjcfohoiehn
Beskrivelse This is a helper plugin for apic (https://apic.app) to enable CORS requests by adding 'Allow-Control-Allow-Origin: *' header.
Filstørrelse 75.58 KB
Antal Installationer 447
Nuværende Version 1.2.1
Senest Opdateret 2022-09-10
Udgivelsesdato 2019-07-28
Udvikler https://apic.app
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://apic.app
Understøttede Sprog 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"
    ]
}