oelgmpmdeafljelabhkohjiaifomlnla
REST API client and HTTP tester. Send GET, POST, PUT, DELETE. JSON viewer, auth, headers. Postman alternative. API Tester Pro is a fast, full-featured REST client and API testing tool that runs entirely inside your browser. Send HTTP requests, inspect responses, debug APIs, and manage saved collections — without installing a heavy desktop app. KEY FEATURES: • Send GET, POST, PUT, PATCH, DELETE, HEAD, and OPTIONS requests • View formatted response body, headers, status codes, and timing • Syntax-highlighted JSON, XML, and HTML response viewer • Authentication support — Basic Auth, Bearer Token, API Key, OAuth headers • Request body support — JSON, form data, raw text, and binary • Save and organize requests into collections for reuse • Request history — quickly re-send previous API calls • Import and export collections for team sharing • Environment variables for switching between dev, staging, and production A lightweight REST client alternative that's fast and private. No signup. No cloud dependency. Install and start testing.
Requestly: Intercept & Modify HTTP Requests
Intercept & modify HTTP(S) traffic: redirect URLs, modify headers, inject scripts, mock REST & GraphQL APIs, and more. 🚀 Best Chrome extension to supercharge Web Development & QA. Trusted by 300,000+ developers. 👉 Requestly works directly in Chrome with beautiful, modern UI and team collaboration features. Popular features – Modify HTTP Headers, Override API Responses, API Mocking, Redirect URLs, Insert Scripts & HTTP Interceptor. 🌟 Top Use Cases → Mock API Responses to build frontend when backend isn't ready → Modify HTTP Request & Response Headers → Test local JavaScript changes directly on production sites → Use HTTP Redirect Rule to load scripts from local or staging environments on production sites → Modify and Mock API Request payload, Response body, & Status Code → Override GraphQL Requests 📌 https://requestly.com/blog/what-is-requestly Requestly (now a part of BrowserStack) doesn't set up a proxy in your browser, and hence, developers don't face VPN issues or lags while using it. Requestly leverages Chrome Extension APIs under the hood to intercept & modify requests. 👉 Redirect URLs, Change Host, Modify Query Params (Map Remote or Map Local) → Use dev/staging APIs in production sites & test local changes without code changes → Debug remote Javascript by loading locally running JS in production sites → Switch Hosts (e.g. abc.com/* to xyz.com/*) using Replace Rule → Debug Ad Tracking Pixels, Debug A/B Test Campaigns, etc → Remote Debugging with Requestly on Production sites → Swap Adobe Launch (Adobe DTM) scripts in production with staging script 📌 Demo Video – https://www.youtube.com/watch?v=85GVaOWTnlE 👉 Insert Scripts to any Webpage → UserScripts are simple JavaScript/CSS code that can change the layout of a page, add or remove new functionality and content, or automate actions. → Use File Server to upload long scripts and Inject them using Script Rule → Inject your JS tags on potential customers' sites and test your features → The sales/product team can use this to demo the product directly on the prospect's website (10x engaging demo) 📌 Demo – https://www.youtube.com/watch?v=4dvucRjLwGY 👉 Requestly supports the following imports → All HTTP header profiles from ModHeader → JSON configuration for Redirects & Scripts from Resource Override → XML configuration from Charles Proxy (Map local isn't supported in chrome extension yet due to technical limitations in browser) 👉 Additional Features → Enable/Disable rules with a single click → Export and import the rules and maintain a backup for your rules → Easy collaboration with others. Share Rules with other Users in one click 📌 Demo – https://www.youtube.com/watch?v=BM7kTFy-vdc
Rest API Inspector
Inspect, filter and export REST API calls from any web app. View headers, payloads, timing and status. Export as HAR or JSON. Rest API Inspector — Professional API Debugging Tool for Developers =================================================================== Rest API Inspector is a powerful, lightweight Chrome extension built for frontend developers, full-stack engineers, QA testers, and anyone who needs to understand exactly what API calls their web application is making. Whether you are debugging a production issue, testing a new feature, auditing third-party integrations, or verifying that your app communicates correctly with a backend, Rest API Inspector gives you instant, clear visibility into every HTTP request — without ever leaving your browser tab. Unlike the built-in Network tab in Chrome DevTools, Rest API Inspector is designed to be fast to open, easy to navigate, and focused purely on REST API traffic. It sits quietly in your toolbar, capturing requests in the background the moment you load a page. One click on any request reveals its complete profile: method, status, duration, all request and response headers, request body, and response body — with JSON automatically pretty-printed and syntax-highlighted. Built on Chrome Manifest V3, the extension uses the absolute minimum permissions required — just tabs and activeTab. Everything is stored in memory only, never written to disk, and never sent anywhere. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ CORE FEATURES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ LIVE REQUEST CAPTURE The moment you open a web page, the extension begins capturing every outgoing API call. No configuration, no code changes. The extension patches both XMLHttpRequest and fetch() at the MAIN world level, which means it intercepts requests from the page's own code, third-party libraries, embedded widgets, and analytics scripts — anything running in that tab. IN-PROGRESS INDICATORS Requests appear instantly with a live spinner while in flight. The row updates automatically when the response arrives, showing the final status code and exact duration. This live view is useful for tracking slow requests, watching long-polling calls, or understanding the order in which parallel requests resolve. RESPONSE TIME TRACKING Every request is timed from the moment it is sent to the moment the full response is received, colour-coded for instant scanning: • Green — under 300ms (fast) • Yellow — 300ms to 1s (acceptable) • Red — over 1s (slow — investigate) HTTP METHOD BADGES Every request is labelled with its HTTP method in a colour-coded badge: • GET — green • POST — blue • PUT — yellow • PATCH — purple • DELETE — red • HEAD — cyan STATUS CODE COLOUR CODING • 2xx Success — green • 3xx Redirect — cyan • 4xx Client Error — yellow • 5xx Server Error — red ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ FILTERING & SEARCH ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ METHOD FILTER BUTTONS One-click buttons to show only GET, POST, PUT, PATCH, or DELETE requests. The active filter is highlighted. Switching is instant. LIVE TEXT SEARCH The search bar filters the request list as you type — by any part of the URL, by method name, or by status code. The text search and method filter work simultaneously. For example: filter to POST, then search for "auth" to find your authentication endpoint immediately. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ FIVE-TAB DETAIL PANEL ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Click any request to open its complete detail view. Five tabs cover every dimension of the exchange: OVERVIEW TAB • HTTP method, status code and text, duration, request type • Exact timestamp, source page URL • Full URL in a copyable code block REQUEST HEADERS TAB All headers sent with the request, sorted alphabetically in a clean two-column table. Includes Content-Type, Authorization, custom headers — everything. REQUEST BODY TAB The payload sent with the request, rendered intelligently: • JSON — parsed, pretty-printed, syntax-highlighted • FormData — decoded as readable key-value pairs, File entries show filename and size • URL-encoded — displayed as readable text • Binary / Blob — labelled with MIME type and byte count • Empty body — clearly labelled rather than left blank RESPONSE HEADERS TAB All headers returned by the server, sorted alphabetically. Check CORS headers, Cache-Control, Set-Cookie, rate limit headers, and any custom API response headers. RESPONSE BODY TAB The full response from the server: • Valid JSON — automatically parsed, pretty-printed and syntax-highlighted • Other text (HTML, XML, plain text) — shown verbatim • Large responses over 500KB — truncated with a note showing the original size All tabs include a hover-to-reveal Copy button so you can copy any content with a single click. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ EXPORT & SHARING ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ EXPORT ALL AS HAR Saves all visible requests as a standard HAR (HTTP Archive) 1.2 file. Compatible with: • Chrome DevTools (Network tab → Import HAR) • Postman (generate a collection from real traffic) • Charles Proxy, Fiddler, WebPageTest • Any HAR viewer or analysis tool DOWNLOAD SINGLE REQUEST Saves the selected request as a self-contained JSON file including the method, URL, status, duration, all headers, request body, and response body. The filename is auto-generated from the method and URL path. COPY AS CURL Copies a complete, ready-to-run curl command to your clipboard: curl -X POST 'https://api.example.com/users' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer eyJhbGc...' \ -d '{"name":"Alice","email":"alice@example.com"}' Paste directly into a terminal to reproduce any request — useful for isolating API behaviour or sharing a reproducible call with a backend engineer. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ RECORDING CONTROLS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ PAUSE & RESUME Freeze capture instantly. The list stops updating while existing requests stay visible. Resume with one click. Useful when you want to read through a set of requests without new ones pushing them down the list. CLEAR ALL Wipes the request list for the current tab. Use this to dismiss page-load background traffic, perform a specific user action, then inspect only the requests that action triggered — all without reloading the page. BADGE COUNTER The extension icon shows a live badge with the total request count for the active tab, updating in real time. Capped at 99+ for visual tidiness on long sessions. PER-TAB ISOLATION Each browser tab has its own independent request log. Switching tabs in Chrome automatically switches the inspector to show that tab's requests. Closing a tab permanently deletes its data from memory. 500-REQUEST ROLLING WINDOW The 500 most recent completed requests are kept per tab. Once the limit is reached, the oldest entry is dropped when a new one arrives — keeping memory usage stable during long sessions. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ PRIVACY & SECURITY ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Zero data collection. Full stop. WHAT THE EXTENSION DOES: • Stores captured requests in JavaScript memory, scoped to the current tab • Displays that data in the popup UI when you open it • Writes data to a file only when you explicitly click Export or Download WHAT THE EXTENSION NEVER DOES: • Never sends request data, URLs, headers, or bodies to any external server • Never writes anything to disk, chrome.storage, or localStorage • Never communicates with any analytics platform or third-party service • Never collects personally identifiable information • Never tracks which websites you visit or which APIs you call PERMISSIONS: • tabs — to identify the active tab and show the correct request list • activeTab — to associate captured requests with their source tab • host_permissions () — to inject the interceptor across all domains No storage permission. No webRequest permission. No background data collection. When you close a tab, all captured data for that tab is permanently gone. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ WHO IS THIS FOR? ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ FRONTEND DEVELOPERS Debug API integration issues, verify request payloads, check headers are being sent correctly, and confirm responses match expectations — without opening DevTools. FULL-STACK ENGINEERS See exactly what the frontend sends to your backend. Compare actual payloads against what your endpoint expects. Export as cURL to reproduce calls directly against the server. QA ENGINEERS & TESTERS Verify that user actions trigger the correct API calls. Check request bodies contain the right data. Confirm status codes match the API contract. Export sessions as HAR files for bug reports. PERFORMANCE ENGINEERS Identify slow API calls instantly with colour-coded timing. Spot requests over 1 second at a glance. Export HAR for waterfall analysis. SECURITY REVIEWERS Audit what data a web application sends to external services. Inspect headers for sensitive information. Review third-party API destinations and payloads. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ GETTING STARTED ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1. Click "Add to Chrome" 2. Pin the extension via the puzzle-piece icon in your toolbar 3. Open any website or web application 4. Click the 🔗 icon — no page reload required 5. Interact with the page and watch requests appear live 6. Click any request to inspect its full headers and body 7. Filter, export, download, or copy as cURL
REST Client
Use Rest Client – your powerful REST API client tool for testing and debugging HTTP requests both online and locally in Chrome This is an effective tool to simplify your API development. It integrates directly into your browser, eliminating the need for external downloads or installations. This extension offers all the essential tools developers need to efficiently interact with restful services. 🔍 Our chrome extension offers significant advantages over standalone options. Unlike traditional rest api clients, which require separate installation and maintenance, our solution is always available right in your browser. No more switching between applications—just click our icon, and chrome transforms into a fully-featured api testing software in seconds! 🔹 Intuitive request builder for all HTTP methods 🔹 Powerful header management and authentication support 🔹 Response visualization These capabilities make our extension comparable to dedicated api software, eliminating the need for additional api testing tools. 🚀 Perfect for Quick API Testing Need to test api endpoints quickly? Our chrome extension provides the perfect balance of power and simplicity. It's instantly available whenever inspiration strikes, making it a reliable choice for day-to-day testing needs. Our app integrates seamlessly with your development workflow, offering distinct advantages: 🌈 Always available in your browser environment 🌈 Minimal resource usage compared to standalone applications 🌈 Consistent experience across operating systems 🌈 Quick access to testing api during development This integration is particularly valuable for developers who work across multiple machines or need to test handlers quickly. 👨💻 Suitable for All Experience Levels Whether you're new to API development or an experienced engineer, our solution offers functionality for everyone: 🚩 Beginners will appreciate the intuitive interface and helpful documentation 🚩 Intermediate and advanced users will benefit from the streamlined workflow Our Rest Client for chrome browser maintains accessibility while growing with your expertise. 🔒 Focus on Security and Privacy Built with security in mind, our Rest Client is perfect for professional environments where data protection is paramount: 🔐 Local storage of sensitive data with encryption options 🔐 No server-side processing of your data 📈 Continuous Improvements Our rest api client for chrome browser benefits from regular enhancements, ensuring it remains competitive: 🌟 Performance optimizations for speed and reliability 🌟 Bug fixes and stability improvements 🌟 UI refinements for better usability 🚀 Get Started Today Getting started with our browser-based online REST tool is easy.. Install our chrome extension from the Chrome Web Store and begin exploring its capabilities: 🌠 Create your first request in seconds 🌠 Configure environments for different testing scenarios 🌠 Save and organize your requests Join many developers who have discovered that a powerful rest client application can exist right within your browser! 🧠 The Smart Alternative Our Rest Client represents the evolution of api tools, bringing the power of dedicated applications directly into your browser. Build better endpoints more efficiently than ever before, without sacrificing functionality. - 🚀 Postman: The Postman download process can be lengthy, and it requires separate installation, consuming more resources. In contrast, our chrome rest api client is instantly accessible, right within your browser. While there is the postman online service that offers an online version, it doesn't provide the full functionality of the desktop app. - 🌙 Insomnia: As a standalone application, insomnia rest client has a steeper learning curve compared to our integrated rest client in chrome, which is designed for ease of use. - 🆕 Bruno and 🔧 Advanced rest client (ARC): These options offers more complex features, like scripting capabilities, but they also requires installation. Many developers use a range of API testing solutions, such as our Chrome extension, Postman, Insomnia, and Bruno rest clients. However, for quick and efficient development our extension is increasingly becoming the preferred choice among developers.
Robots Exclusion Checker
Checks robots.txt, meta robots, x-robots-tag with URL alerts. Canonical warnings, HTTP header info. An SEO extension, robots tester. Robots Exclusion Checker is designed to visually indicate whether any robots exclusions are preventing your page from being crawled or indexed by Search Engines. ## The extension reports on 6 elements: 1. Robots.txt 2. Meta Robots tag 3. A.I. Bots 4. X-robots-tag 5. Rel=Canonical 6. UGC, Sponsored and Nofollow attribute values If a URL you are visiting is being affected by an "Allow” or “Disallow” within robots.txt, the extension will show you the specific rule within the extension, making it easy to copy or visit the live robots.txt. You will also be shown the full robots.txt with the specific rule highlighted (if applicable). Cool eh! Any Robots Meta tags that direct robots to “index", “noindex", “follow" or “nofollow" will flag the appropriate Red, Amber or Green icons. Directives that won’t affect Search Engine indexation, such as “nosnippet” or “noodp” will be shown but won’t be factored into the alerts. The extension makes it easy to view all directives, along with showing you any HTML meta robots tags in full that appear in the source code. Checks whether a website's robots.txt file blocks A.I. companies from accessing its content. It monitors 14 bots across 6 companies - OpenAI, Anthropic, Google, Perplexity, Meta, and Apple, covering three types of access: training data collection, search indexing, and real-time browsing. If any bot exclusions are detected, an "AI" label will appear over the Robots Exclusion Checker icon in your browser. This feature can be deactivated within settings if preferred. Spotting any robots directives in the HTTP header has been a bit of a pain in the past but no longer with this extension. Any specific exclusions will be made very visible, as well as the full HTTP Header - with the specific exclusions highlighted too! Although the canonical tag doesn’t directly impact indexation, it can still impact how your URLs behave within SERPS (Search Engine Results Pages). If the page you are viewing is Allowed to bots but a Canonical mismatch has been detected (the current URL is different to the Canonical URL) then the extension will flag an Amber icon. Canonical information is collected on every page from within the HTML and HTTP header response. - UGC, Sponsored and Nofollow A new addition to the extension gives you the option to highlight any visible links that use a "nofollow", "ugc" or "sponsored" rel attribute value. You can control which links are highlighted and set your preferred colour for each. I’d you’d prefer this is disabled, you can switch off entirely. Within settings, you can choose one of the following user-agents to simulate what each Search Engine has access to: This tool will be useful for anyone working in Search Engine Optimisation (SEO) or digital marketing, as it gives a clear visual indication if the page is being blocked by robots.txt (many existing extensions don’t flag this). Crawl or indexation issues have a direct bearing on how well your website performs in organic results, so this extension should be part of your SEO developer toolkit for Google Chrome. An alternative to some of the common robots.txt testers available online. This extension is useful for: - Faceted navigation review and optimisation (useful to see the robot control behind complex / stacked facets) - Detecting crawl or indexation issues - General SEO review and auditing within your browser ## Avoid the need for multiple SEO Extensions Within the realm of robots and indexation, there is no better extension available. In fact, by installing Robots Exclusion Checker you will avoid having to run multiple extensions within Chrome that will slow down its functionality. 1.0.3: Various bug fixes, including better handling of URLs with encoded characters. Robots.txt expansion feature to allow the viewing of extra-long rules. Now JavaScript history.pushState() compatible. 1.0.4: Various upgrades. Canonical tag detection added (HTML and HTTP Header) with Amber icon alerts. Robots.txt is now shown in full, with the appropriate rule highlighted. X-robots-tag now highlighted within full HTTP header information. Various UX improvements, such as "Copy to Clipboard” and “View Source” links. Social share icons added. 1.0.5: Forces a background HTTP header call when the extension detects a URL change but no new HTTP header info - mainly for sites heavily dependant on JavaScript. 1.0.6: Fixed an issue with the hash part of the URL when doing a canonical check. 1.0.7: Forces a background body response call in addition to HTTP headers, to ensure a non-cached view of the URL for JavaScript heavy sites. 1.0.8: Fixed an error that occurred when multiple references to the same user-agent were detected within robots.txt file. 1.0.9: Fixed an issue with the canonical mismatch alert. 1.1.0: Various UI updates, including a JavaScript alert when the extension detects a URL change with no new HTTP request. 1.1.3: Added UGC, Sponsored and Nofollow link highlighting. 1.1.4: Switched off nofollow link highlighting by default on new installs and fixed a bug related to HTTP header canonical mismatches. 1.1.6: Extension now flags 404 errors in Red. 1.1.7: Not sending cookies when making a background request to fetch a page that was navigated to with pushstate. 1.1.8: Improvements to the handling of relative vs absolute canonical URLs and unencoded URL messaging. 1.2.0.11: Updating to Google's new manifest V3 and fixing small bugs. 1.2.0.12: Added a Spanish language version and made improvements to existing translations. Linking to new website https://www.checkrobots.com 1.2.0.13: Fixed pushState navigation data extraction, resolved inconsistent icon display, and added security protections to prevent logout issues with enterprise websites. 1.3.0: Introduced A.I. bot checking to monitor robots.txt exclusion rules for 14 bots across 6 companies including OpenAI, Anthropic, Google, Perplexity, Meta and Apple, with training, search indexing and real-time browsing bots tracked. New site exclusion feature lets you skip checking for specific domains. Fixes for SPA/back-forward navigation, x-robots-tag case sensitivity for Bingbot and Yahoo and improved allow/disallow rule precedence. Redesigned settings page with collapsible sections.