Yaade Extension

An extension to enhance Yaade functionality

Apa itu Yaade Extension?

Yaade Extension adalah ekstensi Chrome yang dikembangkan oleh jonathan.roesner, dan fitur utamanya adalah "An extension to enhance Yaade functionality".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Yaade Extension

Unduh file ekstensi Yaade Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Yaade Extension Yaade Extension
ID mddoackclclnbkmofficmmepfnadolfa
URL Resmi https://chromewebstore.google.com/detail/yaade-extension/mddoackclclnbkmofficmmepfnadolfa
Deskripsi An extension to enhance Yaade functionality
Ukuran File 29.66 KB
Jumlah Instalasi 503
Versi Saat Ini 1.8
Terakhir Diperbarui 2024-02-18
Tanggal Publikasi 2022-03-23
Penilaian 5.00/5 Total 2 Penilaian
Pengembang jonathan.roesner
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/EsperoTech/yaade
URL Halaman Bantuan https://docs.yaade.io/
Bahasa yang Didukung 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"
    }
}