Ngrok Raw2cURL

Copy Raw as cURL to clipboard. Just click on Raw block or double click a raw from http://localhost:4040/inspect/http.

What is Ngrok Raw2cURL?

Ngrok Raw2cURL is a Chrome extension developed by belotte1355, and its main feature is "Copy Raw as cURL to clipboard. Just click on Raw block or double click a raw from http://localhost:4040/inspect/http.".

Extension Screenshots

screenshot

Download Ngrok Raw2cURL Extension CRX File

Download Ngrok Raw2cURL extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Click on Raw block or double-click on request line from your localhost Ngrok inspector to copy cURL command on clipboard.                    

Extension Basic Information

Name Ngrok Raw2cURL Ngrok Raw2cURL
ID panfnlbnliocfnpoiggopcbdigmmkpil
Official URL https://chromewebstore.google.com/detail/ngrok-raw2curl/panfnlbnliocfnpoiggopcbdigmmkpil
Description Copy Raw as cURL to clipboard. Just click on Raw block or double click a raw from http://localhost:4040/inspect/http.
File Size 19.42 KB
Installation Count 91
Current Version 2.0.1
Last Updated 2022-12-11
Publish Date 2022-04-21
Rating 5.00/5 Total 4 Ratings
Developer belotte1355
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.0.1",
    "name": "Ngrok Raw2cURL",
    "icons": {
        "16": "public\/icons\/16.png",
        "48": "public\/icons\/48.png",
        "128": "public\/icons\/128.png"
    },
    "description": "Copy Raw as cURL to clipboard. Just click on Raw block or double click a raw from http:\/\/localhost:4040\/inspect\/http.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:4040\/inspect\/http"
            ],
            "js": [
                "copyCurl.js",
                "lib\/toastify\/toastify.js",
                "lib\/toast.js"
            ],
            "css": [
                "lib\/toastify\/toastify.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "lib\/toastify\/toastify.css"
            ],
            "matches": [
                "http:\/\/*\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}