Yaade Extension

An extension to enhance Yaade functionality

What is Yaade Extension?

Yaade Extension is a Chrome extension developed by jonathan.roesner, and its main feature is "An extension to enhance Yaade functionality".

Extension Screenshots

screenshot

Download Yaade Extension Extension CRX File

Download Yaade Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Yaade Extension Yaade Extension
ID mddoackclclnbkmofficmmepfnadolfa
Official URL https://chromewebstore.google.com/detail/yaade-extension/mddoackclclnbkmofficmmepfnadolfa
Description An extension to enhance Yaade functionality
File Size 29.66 KB
Installation Count 503
Current Version 1.8
Last Updated 2024-02-18
Publish Date 2022-03-23
Rating 5.00/5 Total 2 Ratings
Developer jonathan.roesner
Email [email protected]
Payment Type free
Extension Website https://github.com/EsperoTech/yaade
Help Page URL https://docs.yaade.io/
Supported Languages 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"
    }
}