Yaade Extension

An extension to enhance Yaade functionality

ما هو Yaade Extension؟

Yaade Extension هو إضافة Chrome تم تطويرها بواسطة jonathan.roesner، والميزة الرئيسية لها هي "An extension to enhance Yaade functionality".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Yaade Extension

قم بتنزيل ملفات الامتداد Yaade Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Yaade Extension Yaade Extension
ID mddoackclclnbkmofficmmepfnadolfa
عنوان URL الرسمي https://chromewebstore.google.com/detail/yaade-extension/mddoackclclnbkmofficmmepfnadolfa
الوصف An extension to enhance Yaade functionality
حجم الملف 29.66 KB
عدد التثبيتات 503
النسخة الحالية 1.8
آخر تحديث 2024-02-18
تاريخ النشر 2022-03-23
تقييم 5.00/5 مجموع تقييمات 2
المطور jonathan.roesner
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/EsperoTech/yaade
عنوان صفحة المساعدة https://docs.yaade.io/
اللغات المدعومة 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"
    }
}