Local-CORS

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

Apa itu Local-CORS?

Local-CORS adalah ekstensi Chrome yang dikembangkan oleh Of cors, dan fitur utamanya adalah "Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Local-CORS

Unduh file ekstensi Local-CORS dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Local-CORS Local-CORS
ID bhachhlaofmplbfnefenmlnflolelkff
URL Resmi https://chromewebstore.google.com/detail/local-cors/bhachhlaofmplbfnefenmlnflolelkff
Deskripsi Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header
Ukuran File 1.58 MB
Jumlah Instalasi 3,022
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2019-08-06
Tanggal Publikasi 2019-08-06
Penilaian 1.17/5 Total 6 Penilaian
Pengembang Of cors
Tipe Pembayaran free
Situs Ekstensi https://github.com/ncronquist/local-cors
URL Halaman Bantuan https://github.com/ncronquist/local-cors/issues
Bahasa yang Didukung 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"
}