Restfox CORS Helper
Help bypass CORS when making requests from Restfox
什麼是Restfox CORS Helper?
Restfox CORS Helper是由https://restfox.dev開發的Chrome擴展程式,該擴展的主要功能是“Help bypass CORS when making requests from Restfox”。
擴展截圖
下載Restfox CORS Helper擴展crx文件
下載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 |
ID | pgoncladmcclnmilkbnmmbldcihdgfnf |
官方網址 | 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" } } } |