Local-CORS

Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header

Was ist Local-CORS?

Local-CORS ist eine Chrome-Erweiterung, die von Of cors entwickelt wurde, und ihr Hauptmerkmal ist "Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header".

Erweiterungsscreenshots

screenshot

Local-CORS-Erweiterungs-CRX-Datei herunterladen

Laden Sie Local-CORS-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 extension is meant to be used by web developers who need to test UI changes from their local machines against a remote API that doesn't allow localhost CORS requests.

Make sure you understand how CORS works (https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) before enabling this extension. As a best practice, you should lock down the intercepted URL pattern to only the API you are actually trying to test.                    

Grundlegende Informationen zur Erweiterung

Name Local-CORS Local-CORS
ID bhachhlaofmplbfnefenmlnflolelkff
Offizielle URL https://chromewebstore.google.com/detail/local-cors/bhachhlaofmplbfnefenmlnflolelkff
Beschreibung Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header
Dateigröße 1.58 MB
Installationsanzahl 3,022
Aktuelle Version 0.0.1
Letztes Update 2019-08-06
Veröffentlichungsdatum 2019-08-06
Bewertung 1.17/5 Insgesamt 6 Bewertungen
Entwickler Of cors
Zahlungsart free
Erweiterungswebsite https://github.com/ncronquist/local-cors
Hilfeseite URL https://github.com/ncronquist/local-cors/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/off.png",
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/localhost*",
        "https:\/\/localhost*",
        "http:\/\/127.0.0.1*",
        "https:\/\/127.0.0.1*"
    ],
    "web_accessible_resources": [
        "images\/on.png",
        "images\/off.png"
    ],
    "options_page": "options.html"
}