Yaade Extension

An extension to enhance Yaade functionality

Vad är Yaade Extension?

Yaade Extension är en Chrome-tillägg utvecklad av jonathan.roesner, och dess huvudfunktion är "An extension to enhance Yaade functionality".

Tilläggsskärmbilder

screenshot

Ladda ner Yaade Extension-förlängningens CRX-fil

Ladda ner Yaade Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Yaade Extension Yaade Extension
ID mddoackclclnbkmofficmmepfnadolfa
Officiell webbadress https://chromewebstore.google.com/detail/yaade-extension/mddoackclclnbkmofficmmepfnadolfa
Beskrivning An extension to enhance Yaade functionality
Filstorlek 29.66 KB
Antal Installationer 503
Aktuell Version 1.8
Senast Uppdaterad 2024-02-18
Publiceringsdatum 2022-03-23
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare jonathan.roesner
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/EsperoTech/yaade
Hjälpsida URL https://docs.yaade.io/
Stödda Språk 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"
    }
}