Ngrok Raw2cURL

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

Qu'est-ce que Ngrok Raw2cURL ?

Ngrok Raw2cURL est une extension Chrome développée par belotte1355, et sa fonction principale est "Copy Raw as cURL to clipboard. Just click on Raw block or double click a raw from http://localhost:4040/inspect/http.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Ngrok Raw2cURL

Téléchargez les fichiers d'extension Ngrok Raw2cURL au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Ngrok Raw2cURL Ngrok Raw2cURL
ID panfnlbnliocfnpoiggopcbdigmmkpil
URL Officiel 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.
Taille du Fichier 19.42 KB
Nombre d'Installations 91
Version Actuelle 2.0.1
Dernière Mise à Jour 2022-12-11
Date de Publication 2022-04-21
Évaluation 5.00/5 Total 4 Évaluations
Développeur belotte1355
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
        }
    ]
}