Restfox CORS Helper
Help bypass CORS when making requests from Restfox
Apa itu Restfox CORS Helper?
Restfox CORS Helper adalah ekstensi Chrome yang dikembangkan oleh https://restfox.dev, dan fitur utamanya adalah "Help bypass CORS when making requests from Restfox".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Restfox CORS Helper
Unduh file ekstensi Restfox CORS Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Restfox CORS Helper |
ID | pgoncladmcclnmilkbnmmbldcihdgfnf |
URL Resmi | https://chromewebstore.google.com/detail/restfox-cors-helper/pgoncladmcclnmilkbnmmbldcihdgfnf |
Deskripsi | Help bypass CORS when making requests from Restfox |
Ukuran File | 89.54 KB |
Jumlah Instalasi | 416 |
Versi Saat Ini | 1.0.8 |
Terakhir Diperbarui | 2023-11-23 |
Tanggal Publikasi | 2022-09-08 |
Pengembang | https://restfox.dev |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/flawiddsouza/Restfox/issues |
Bahasa yang Didukung | 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" } } } |