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文件

下載GETCURL.APP擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
                ""
            ]
        }
    ]
}