Local-CORS
Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header
Local-CORSとは何ですか?
Local-CORSはOf corsによって開発されたChromeの拡張機能で、その主な機能は「Allows CORS requests from your localhost to any API by setting 'Access-Control-Allow-Origin: *' header」です。
拡張機能のスクリーンショット
Local-CORS拡張機能のCRXファイルをダウンロード
Local-CORS拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
ヘルプページのURL | 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" } |