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 |
公式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 |
Eメール | [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" } } } |