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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    }
}