Request Interceptor
Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.
Wat is Request Interceptor?
Request Interceptor is een Chrome-extensie ontwikkeld door Vinay Kaparthi, en de belangrijkste functie is "Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.".
Extensie Screenshots
Download het CRX-bestand van de extensie Request Interceptor
Download Request Interceptor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension helps in building rules(conditions) which when met will help in 1. redirect/block http requests 2. throttle response of static resources 3. add/modify/delete request/response http headers 4. add/modify/delete http query parameters
Basisinformatie over de Extensie
Naam | Request Interceptor |
ID | bfgblailifedppfilabonohepkofbkpm |
Officiële URL | https://chromewebstore.google.com/detail/request-interceptor/bfgblailifedppfilabonohepkofbkpm |
Beschrijving | Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params. |
Bestandsgrootte | 1.89 MB |
Aantal Installaties | 10,000 |
Huidige Versie | 1.6.0 |
Laatst Bijgewerkt | 2023-10-23 |
Publicatiedatum | 2020-06-01 |
Beoordeling | 4.05/5 Totaal 55 Beoordelingen |
Ontwikkelaar | Vinay Kaparthi |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "author": "Vinay Kumar Kaparthi", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "32": "images\/logo_64.png" }, "default_title": "Request Interceptor" }, "description": "Intercept Requests and add custom rules to modify request\/response headers, block\/redirect requests, modify query params.", "icons": { "128": "images\/logo_128.png", "32": "images\/logo_32.png", "48": "images\/logo_48.png", "64": "images\/logo_64.png" }, "manifest_version": 2, "minimum_chrome_version": "80", "name": "Request Interceptor", "options_page": "index.html", "permissions": [ "tabs", "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "unlimitedStorage" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.6.0", "content_security_policy": "style-src-elem 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com\/css blob:;style-src 'self' 'unsafe-inline';" } |