Yaade Extension

An extension to enhance Yaade functionality

什麼是Yaade Extension?

Yaade Extension是由jonathan.roesner開發的Chrome擴展程式,該擴展的主要功能是“An extension to enhance Yaade functionality”。

擴展截圖

screenshot

下載Yaade Extension擴展crx文件

下載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
官方網址 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"
    }
}