Local-CORS
Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header
Local-CORS là gì?
Local-CORS là một tiện ích mở rộng Chrome được phát triển bởi Of cors, và tính năng chính của nó là "Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Local-CORS
Tải xuống các tệp mở rộng Local-CORS dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Local-CORS |
ID | bhachhlaofmplbfnefenmlnflolelkff |
URL Chính Thức | https://chromewebstore.google.com/detail/local-cors/bhachhlaofmplbfnefenmlnflolelkff |
Mô tả | Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header |
Kích Thước Tệp | 1.58 MB |
Số Lần Cài Đặt | 3,022 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2019-08-06 |
Ngày Phát Hành | 2019-08-06 |
Đánh Giá | 1.17/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Of cors |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ncronquist/local-cors |
URL Trang Trợ Giúp | https://github.com/ncronquist/local-cors/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } |