Restfox CORS Helper

Help bypass CORS when making requests from Restfox

Restfox CORS Helperคืออะไร?

Restfox CORS Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://restfox.dev และคุณลักษณะหลักของมันคือ "Help bypass CORS when making requests from Restfox"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Restfox CORS Helper

ดาวน์โหลดไฟล์ส่วนขยาย Restfox CORS Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Restfox is web based HTTP client (similar to Postman & Insomnia) that allows you to test HTTP endpoints completely in-browser without using a backend or a desktop application.

This extension provides the ability to bypass CORS restrictions so that you can make requests from the Restfox web application without worrying about CORS issues.

You can find Restfox at https://restfox.dev                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Restfox CORS Helper Restfox CORS Helper
ID pgoncladmcclnmilkbnmmbldcihdgfnf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf
คำอธิบาย Help bypass CORS when making requests from Restfox
ขนาดไฟล์ 89.54 KB
จำนวนการติดตั้ง 416
เวอร์ชันปัจจุบัน 1.0.8
อัปเดตครั้งล่าสุด 2023-11-23
วันที่เผยแพร่ 2022-09-08
ผู้พัฒนา https://restfox.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/flawiddsouza/Restfox/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Restfox CORS Helper",
    "description": "Help bypass CORS when making requests from Restfox",
    "version": "1.0.8",
    "manifest_version": 3,
    "icons": {
        "512": "icons\/favicon.png"
    },
    "permissions": [
        "scripting",
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "512": "icons\/favicon-disabled.png"
        }
    }
}