Cacao CORS Proxy

Cacao (CORS Access-Control-Allow-Origin) Proxy

Was ist Cacao CORS Proxy?

Cacao CORS Proxy ist eine Chrome-Erweiterung, die von Michael FIG entwickelt wurde, und ihr Hauptmerkmal ist "Cacao (CORS Access-Control-Allow-Origin) Proxy".

Erweiterungsscreenshots

screenshot
screenshot

Cacao CORS Proxy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cacao CORS Proxy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Cacao CORS Proxy Cacao CORS Proxy
ID ghkpkeholelocigdnkijbhilchjekppk
Offizielle URL https://chromewebstore.google.com/detail/cacao-cors-proxy/ghkpkeholelocigdnkijbhilchjekppk
Beschreibung Cacao (CORS Access-Control-Allow-Origin) Proxy
Dateigröße 43.12 KB
Installationsanzahl 192
Aktuelle Version 1.0.0
Letztes Update 2019-01-06
Veröffentlichungsdatum 2019-01-05
Entwickler Michael FIG
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}