Yaade Extension

An extension to enhance Yaade functionality

Was ist Yaade Extension?

Yaade Extension ist eine Chrome-Erweiterung, die von jonathan.roesner entwickelt wurde, und ihr Hauptmerkmal ist "An extension to enhance Yaade functionality".

Erweiterungsscreenshots

screenshot

Yaade Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Yaade Extension-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

                        Yaade is an open-source, self-hosted, collaborative API development environment.

This extension allows requests made from the Yaade application to be proxied through the extension for the provided domains so that cross-origin requests are possible.

It removes CORS restrictions when sending requests through Yaade.
It allows Yaade to make calls to localhost from the browser.

In order to make use of this extension you have to set the proxy of your environment to "Extension".

To learn more about Yaade, read the docs: https://github.com/EsperoTech/yaade
If you like Yaade, remember to star us on GitHub: https://github.com/EsperoTech/yaade                    

Grundlegende Informationen zur Erweiterung

Name Yaade Extension Yaade Extension
ID mddoackclclnbkmofficmmepfnadolfa
Offizielle URL https://chromewebstore.google.com/detail/yaade-extension/mddoackclclnbkmofficmmepfnadolfa
Beschreibung An extension to enhance Yaade functionality
Dateigröße 29.66 KB
Installationsanzahl 503
Aktuelle Version 1.8
Letztes Update 2024-02-18
Veröffentlichungsdatum 2022-03-23
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler jonathan.roesner
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/EsperoTech/yaade
Hilfeseite URL https://docs.yaade.io/
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Yaade Extension",
    "description": "An extension to enhance Yaade functionality",
    "version": "1.8",
    "manifest_version": 3,
    "host_permissions": [
        ""
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "\/popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}