Yaade Extension

An extension to enhance Yaade functionality

Wat is Yaade Extension?

Yaade Extension is een Chrome-extensie ontwikkeld door jonathan.roesner, en de belangrijkste functie is "An extension to enhance Yaade functionality".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Yaade Extension

Download Yaade Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Yaade Extension Yaade Extension
ID mddoackclclnbkmofficmmepfnadolfa
Officiële URL https://chromewebstore.google.com/detail/yaade-extension/mddoackclclnbkmofficmmepfnadolfa
Beschrijving An extension to enhance Yaade functionality
Bestandsgrootte 29.66 KB
Aantal Installaties 503
Huidige Versie 1.8
Laatst Bijgewerkt 2024-02-18
Publicatiedatum 2022-03-23
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar jonathan.roesner
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/EsperoTech/yaade
Help Pagina-URL https://docs.yaade.io/
Ondersteunde Talen 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"
    }
}