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
公式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
Eメール [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"
    }
}