GETCURL.APP

cURL sharing made fast, safe, easy.

GETCURL.APPคืออะไร?

GETCURL.APP เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://getcurl.app และคุณลักษณะหลักของมันคือ "cURL sharing made fast, safe, easy."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GETCURL.APP

ดาวน์โหลดไฟล์ส่วนขยาย 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
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": [
                ""
            ]
        }
    ]
}