Cacao CORS Proxy
Cacao (CORS Access-Control-Allow-Origin) Proxy
Cacao CORS Proxyとは何ですか?
Cacao CORS ProxyはMichael FIGによって開発されたChromeの拡張機能で、その主な機能は「Cacao (CORS Access-Control-Allow-Origin) Proxy」です。
拡張機能のスクリーンショット
Cacao CORS Proxy拡張機能のCRXファイルをダウンロード
Cacao CORS Proxy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The Cacao CORS Proxy Browser Extension intercepts the Fetch API for whitelisted URLs.
Find it on GitHub (http://github.com/michaelfig/cacao-extension)
The main application of Cacao is to allow Javascript running in a web browser to access cross-origin images (plain, or streams such as MJPEG) without failing due to Cross-Origin restrictions.
This is useful for applications such as WebRTC, which may need to process images from neither localhost nor the script's default origin. 拡張機能の基本情報
| 名前 | |
| ID | ghkpkeholelocigdnkijbhilchjekppk |
| 公式URL | https://chromewebstore.google.com/detail/cacao-cors-proxy/ghkpkeholelocigdnkijbhilchjekppk |
| 説明 | Cacao (CORS Access-Control-Allow-Origin) Proxy |
| ファイルサイズ | 43.12 KB |
| インストール数 | 192 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2019-01-06 |
| 公開日 | 2019-01-05 |
| 開発者 | Michael FIG |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Cacao CORS Proxy",
"version": "1.0.0",
"author": "Michael FIG",
"description": "Cacao (CORS Access-Control-Allow-Origin) Proxy",
"short_name": "Cacao",
"homepage_url": "https:\/\/github.com\/michaelfig\/cacao-extension",
"icons": {
"48": "cacao48.png",
"96": "cacao96.png",
"128": "cacao128.png"
},
"permissions": [
"*:\/\/*\/*",
"webRequest",
"webRequestBlocking",
"storage"
],
"options_ui": {
"page": "options\/cacao-options.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.poc.ts.liveblockauctions.com\/ms\/publish.html",
"*:\/\/localhost\/publish.html"
],
"js": [
"browser-polyfill.min.js",
"cacao-server.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"cacao-client.js"
]
} | |