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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Restfox CORS Helper
قم بتنزيل ملفات الامتداد Restfox CORS Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | 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" } } } |