mhophcedkkpfkdgmpphhiafcodcckbcp
Temporarily bypass CORS restrictions to streamline development and testing workflows. CORS Unblocker: Effortless Cross-Origin Development and Testing Simplify API Testing and Web Development Take control of your development workflow with CORS Unblocker, the ultimate tool for bypassing Cross-Origin Resource Sharing (CORS) restrictions. Designed with developers and testers in mind, this extension streamlines the process of working with local and cross-origin APIs. Key Features Instant CORS Bypass Enable or disable CORS restrictions with a single click, removing barriers to seamless API and web application testing. No server-side changes required! Temporary and Secure CORS unblock settings are temporary and automatically reset when the browser closes, ensuring your browsing remains secure. Developer-Focused Design Tailored specifically for developers and testers, this tool simplifies debugging and accelerates workflows for local development and API integrations. Built-In Security Warning Receive clear, built-in warnings about potential security implications when disabling CORS, empowering you to make informed choices. Minimalist, User-Friendly Interface Enjoy a sleek, intuitive UI that makes toggling the CORS unblocker quick and hassle-free. Safe for Development Environments Perfect for debugging and testing without affecting live or production systems, keeping your projects secure. Plug-and-Play Functionality No setup required—just install, enable, and start using immediately. Universal Compatibility Works across all websites and API endpoints, offering a comprehensive solution for cross-origin issues. Why Choose CORS Unblocker? Whether you're a seasoned developer or just starting, CORS Unblocker is an essential tool for enhancing your productivity. Debug, test, and develop faster while keeping your projects secure and efficient. Download now and revolutionize your cross-origin development!
NG-Anti-CORS
Bypass CORS restrictions with one click. Perfect developer tool for testing APIs and debugging applications locally. Eliminate CORS errors in your web development workflow with one click! NG-Anti-CORS is a powerful developer tool designed to bypass Cross-Origin Resource Sharing restrictions when testing or prototyping web applications. • Toggle CORS blocking on and off with a single click • Configure persistent site-specific settings that remain active after browser restart • Selectively enable CORS blocking only for specific domains that you choose • Clean visual indicators showing when CORS blocking is active • Customizable notifications to remind you when CORS restrictions are being bypassed • Simple domain management interface for maintaining your preferences - Perfect for: - • Frontend developers working with APIs • Testing applications locally • Debugging CORS-related issues • Working with third-party services that have restrictive CORS policies Critical Fix: Corrected the core behavior of the extension. Previously, the extension was incorrectly blocking CORS when disabled. Now it correctly does not modify browser behavior when disabled. Improved UI Labels: Updated status messages and notifications to accurately reflect the extension's functionality New Feature: Added advanced domain filtering options New Feature: Customizable notification timeout settings Improved Performance: Optimized background processes for better browser performance Enhanced UI: Redesigned settings panel for better usability Bug Fixes: Resolved issues with certain domain configurations Bug Fixes: Fixed unwanted notifications showing up for domains where CORS is not active Improved Compatibility: Fixed issues with YouTube and Google services breaking when extension is active Smart Domain Detection: Added intelligent detection of sites with existing CORS handling Enhanced Notification System: Better control over when notifications appear Protected Domain Handling: Special treatment for domains with sensitive CORS requirements NG-Anti-CORS lets you maintain separate settings for each site, allowing you to permanently enable CORS blocking on development domains while keeping it disabled on sensitive websites - even after restarting your browser.
SA CORS Unblock
An extension to help to bypass CORS security errors on superannotate domains This extension helps overcome CORS policy limitations ONLY on SuperAnnotate’s and localhost domains by modifying the `Access-Control-Allow-*` response headers. You can enable or disable the extension by clicking on its icon. Additionally, you can toggle which types of headers it modifies: We value web security and have intentionally kept this extension as minimal as possible to ensure a safe browsing experience. This extension DOES NOT collect, store, or share any user data.
Request Headers (including CORS) Modifier
Modifies request headers (including CORS) for development purposes! 👨🏻💻 This Extension is intended for developers and it modifies Request Headers, either through the extension’s main icon or via an exposed API. The API can be accessed from the console or sideloaded scripts (such as Tampermonkey), making it ideal for automated workflows. 💻 The API includes enable() and disable() methods for toggling header modifications directly from the global namespace. You can also add, remove and clear either hostnames or headers, and the passed data can be strings, arrays, objects (for the headers) or arrays of objects. Methods include addHostname, addHostnames, removeHostname, removeHostnames, clearHostnames, addHeader, addHeaders, removeHeader, removeHeaders, clearHeaders. All API methods return a Promise that resolves to a boolean indicating success (true) or failure (false). The extension exposes a global API object window.requestHeaderModifier that allows you to control its functionality programmatically from your browser's developer console, a website's script (if allowed by CSP), or user script managers like Tampermonkey. All API methods return a Promise that resolves to a boolean indicating success (true) or failure (false). 📖 enable window.requestHeaderModifier.enable(); // Enables the header modification functionality. This will apply the currently saved rules. Returns true on success 📖 disable window.requestHeaderModifier.disable(); // Disables the header modification functionality. This will clear all active rules. Returns true on success 📖 addHostname window.requestHeaderModifier.addHostname(hostname); // Adds a new hostname to the list of target hostnames. If the hostname already exists, no change is made. 🔤 Parameter: hostname (string): The hostname to add (e.g., "api.example.com"). 📖 addHostnames window.requestHeaderModifier.addHostnames(hostnames); // Adds multiple hostnames to the list of target hostnames. Duplicate hostnames will be ignored. 📖 removeHostname window.requestHeaderModifier.removeHostname(hostname); // Removes a specific hostname from the list of target hostnames. 🔤 Parameter: hostname (string): The hostname to remove. 📖 removeHostnames window.requestHeaderModifier.removeHostnames(hostnames); // Removes multiple hostnames from the list of target hostnames. Hostnames not found will be ignored. 📖 clearHostnames window.requestHeaderModifier.clearHostnames(); // Clears all hostnames from the list, effectively disabling header modification for all domains until new hostnames are added. 📖 addHeader window.requestHeaderModifier.addHeader(header); // Adds a new custom request header or updates an existing one if a header with the same name already exists. 🔤 Parameter: header (string | object): The header to add. String format: "Header-Name: Header-Value" (e.g., "X-Custom-Auth: mytoken123") Object format: { "headerName": "headerValue" } (e.g., { "X-Client-ID": "app-123" }) // Updating an existing header (will overwrite "MyValue" with "NewValue") await window.requestHeaderModifier.addHeader("X-My-Header: NewValue"); 📖 addHeaders window.requestHeaderModifier.addHeaders(headers); // Adds multiple request headers to the list. If headers with the same names exist, their values will be updated. // Mixing formats and updating existing await window.requestHeaderModifier.addHeaders([ "Cache-Control: no-cache", { "X-My-Header": "UpdatedValue" }, // This will update X-My-Header if it exists ]); // Returns true on success 📖 removeHeader window.requestHeaderModifier.removeHeader(header); // Removes a specific custom request header by its name. The value part of the input is ignored for removal. 🔤 Parameter: header (string | object): The header to remove. Only the header name is considered for removal. String format: "Header-Name: AnyValue" (e.g., "X-My-Header: ignored") Object format: { "headerName": "ignoredValue" } (e.g., { "Content-Type": "ignored" }) 📖 removeHeaders window.requestHeaderModifier.removeHeaders(headers); // Removes multiple request headers from the list. Only the header name is considered for removal. Headers not found will be ignored. 📖 clearHeaders window.requestHeaderModifier.clearHeaders(); // Clears all custom request headers from the list. 🥷 GitHub / Source - https://github.com/lvladikov/request-header-modifier-chrome-extension
CORS Unblock
Temporarily unblock CORS for development and testing purposes Unblock CORS (cautiously!) for Development & Testing Need to temporarily unblock CORS restrictions on a trusted website for development or testing? This extension allows you to do that with a "SINGLE CLICK", but be aware of the security implications. Unblocking is temporary and won't persist across page reloads. Use responsibly on trusted sites only! Simple one-click unblocking. Clear warnings about security risks and temporary nature of changes. Designed for developers and testers (use with caution on production websites). This extension is a valuable tool for developers and testers, but it's crucial to use it responsibly and understand the potential security risks. Completely free and NO ads! For JSON Validation and formatting visit: https://jsonvalidator.onrender.com