GETCURL.APP

cURL sharing made fast, safe, easy.

O que é GETCURL.APP?

GETCURL.APP é uma extensão do Chrome desenvolvida por https://getcurl.app, e sua principal característica é "cURL sharing made fast, safe, easy.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GETCURL.APP

Baixe arquivos de extensão GETCURL.APP no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Save x10 your time on API bug reports. No new tool installs needed. Zero Back & forth communication. Fully secured. Send cUrl request directly via browser. Log the shareable cUrl to Developer Console, to Messenging program (e.g. slack, telegram), and more ...                    

Informações Básicas da Extensão

Nome GETCURL.APP GETCURL.APP
ID jknanembdjacejlbcfeliakcdagmdlpc
URL Oficial https://chromewebstore.google.com/detail/getcurlapp/jknanembdjacejlbcfeliakcdagmdlpc
Descrição cURL sharing made fast, safe, easy.
Tamanho do Arquivo 497 KB
Contagem de Instalações 23
Versão Atual 1.1
Última Atualização 2022-05-31
Data de Publicação 2022-04-25
Desenvolvedor https://getcurl.app
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://getcurl.app/hello
URL da Página de Ajuda https://getcurl.app/support
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GETCURL.APP",
    "version": "1.1",
    "description": "cURL sharing made fast, safe, easy.",
    "icons": {
        "16": "icons\/favicon.png",
        "32": "icons\/[email protected]",
        "48": "icons\/[email protected]",
        "96": "icons\/[email protected]",
        "128": "icons\/[email protected]"
    },
    "permissions": [
        "clipboardRead",
        "webRequest",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_title": "GETCURL.APP: cURL sharing made fast, safe, easy.",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "env.js",
                "common.js",
                "popup.js",
                "frame.js",
                "request_capturing.js"
            ]
        }
    ],
    "commands": {
        "shareByClipboard": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Ctrl+Shift+K"
            },
            "description": "Share curl by clipboard"
        },
        "captureHttpRequest": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Ctrl+Shift+X"
            },
            "description": "Capture HTTP requests"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "frame.html",
                "frame.css",
                "frame_loading.css",
                "request_capturing.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}