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 |
| 电子邮箱 | [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"
]
} | |