Local-CORS

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

ما هو Local-CORS؟

Local-CORS هو إضافة Chrome تم تطويرها بواسطة Of cors، والميزة الرئيسية لها هي "Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Local-CORS

قم بتنزيل ملفات الامتداد Local-CORS بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Local-CORS Local-CORS
ID bhachhlaofmplbfnefenmlnflolelkff
عنوان URL الرسمي https://chromewebstore.google.com/detail/local-cors/bhachhlaofmplbfnefenmlnflolelkff
الوصف Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header
حجم الملف 1.58 MB
عدد التثبيتات 3,022
النسخة الحالية 0.0.1
آخر تحديث 2019-08-06
تاريخ النشر 2019-08-06
تقييم 1.17/5 مجموع تقييمات 6
المطور Of cors
نوع الدفع free
موقع الإضافة https://github.com/ncronquist/local-cors
عنوان صفحة المساعدة https://github.com/ncronquist/local-cors/issues
اللغات المدعومة 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"
}