API console extension

API Console extension to proxy HTTP requests to the documented API.

API console extension क्या है?

API console extension https://api-console.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "API Console extension to proxy HTTP requests to the documented API."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में API console extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        An extension to be used with MuleSoft's API Console to make HTTP requests in Chrome browser. No need for additional proxy services and complicated setups. Install the extension and read response data on any website hosting the API console.

Recent changes:
- Migrated to Chrome Manifest v3
- Removed unused "identity" permission (added while developing proxy for OAuth 2 but never removed)
- Removed "tabs" permissions as chrome extensions do not need it in the scope required by this extension
- Added ability to proxy a File and FormData

Permissions

Access to your data on all websites
It is required to make HTTP requests to API endpoints. It means that the extension can make an HTTP request to any endpoint.

Privacy
This extension does not collect any kind of data (not even analytics). The extension reads the data passed to it from the API Console application and proxies them "as-is" to the API endpoint. The response is then proxied back to the application.

How does it work?
The extension will inject a tiny portion of JavaScript code into every webpage you visit. The API console fires a specific event before making a request. The JavaScript code will recognize this event and handle the request. It will not affect other web pages you visit.                    

एक्सटेंशन की मूल जानकारी

नाम API console extension API console extension
ID olkpohecoakpkpinafnpppponcfojioa
आधिकारिक URL https://chromewebstore.google.com/detail/api-console-extension/olkpohecoakpkpinafnpppponcfojioa
विवरण API Console extension to proxy HTTP requests to the documented API.
फ़ाइल का आकार 30.38 KB
स्थापना संख्या 1,971
वर्तमान संस्करण 0.1.3
अंतिम अपडेट 2022-11-09
प्रकाशन तिथि 2017-04-10
रेटिंग 2.20/5 कुल 5 रेटिंग्स
डेवलपर https://api-console.io
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://docs.mulesoft.com/api-community-manager/api-console
गोपनीयता नीति पृष्ठ URL https://docs.google.com/document/d/1BzrKQ0NxFXuDIe2zMA-0SZBNU0P46MHr4GftZmoLUQU/edit?usp=sharing
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "API console extension",
    "version": "0.1.3",
    "description": "API Console extension to proxy HTTP requests to the documented API.",
    "author": "Pawel Psztyc ",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/page-proxy.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "src\/service.js",
        "type": "module"
    },
    "icons": {
        "16": "assets\/icon-16x16.png",
        "48": "assets\/icon-48x48.png",
        "128": "assets\/icon-128x128.png"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}