Restfox CORS Helper
Help bypass CORS when making requests from Restfox
Restfox CORS Helper là gì?
Restfox CORS Helper là một tiện ích mở rộng Chrome được phát triển bởi https://restfox.dev, và tính năng chính của nó là "Help bypass CORS when making requests from Restfox".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Restfox CORS Helper
Tải xuống các tệp mở rộng Restfox CORS Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Restfox CORS Helper |
ID | pgoncladmcclnmilkbnmmbldcihdgfnf |
URL Chính Thức | https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf |
Mô tả | Help bypass CORS when making requests from Restfox |
Kích Thước Tệp | 89.54 KB |
Số Lần Cài Đặt | 416 |
Phiên Bản Hiện Tại | 1.0.8 |
Cập Nhật Lần Cuối | 2023-11-23 |
Ngày Phát Hành | 2022-09-08 |
Nhà Phát Triển | https://restfox.dev |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/flawiddsouza/Restfox/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |