GETCURL.APP

cURL sharing made fast, safe, easy.

GETCURL.APP란 무엇입니까?

GETCURL.APP은(는) https://getcurl.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "cURL sharing made fast, safe, easy."입니다.

확장 프로그램 스크린샷

screenshot

GETCURL.APP 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 ...                    

확장 프로그램 기본 정보

이름 GETCURL.APP GETCURL.APP
ID jknanembdjacejlbcfeliakcdagmdlpc
공식 URL https://chromewebstore.google.com/detail/getcurlapp/jknanembdjacejlbcfeliakcdagmdlpc
설명 cURL sharing made fast, safe, easy.
파일 크기 497 KB
설치 횟수 23
현재 버전 1.1
최근 업데이트 2022-05-31
출시 날짜 2022-04-25
개발자 https://getcurl.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://getcurl.app/hello
도움말 페이지 URL https://getcurl.app/support
지원되는 언어 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": [
                ""
            ]
        }
    ]
}