Interceptor
Run web clients without backends by mocking HTTP requests
Qu'est-ce que Interceptor ?
Interceptor est une extension Chrome développée par Codemancers, et sa fonction principale est "Run web clients without backends by mocking HTTP requests".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Interceptor
Téléchargez les fichiers d'extension Interceptor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Run web clients without backends by mocking HTTP requests During development, often times front-end devs have to wait for the back-end devs to offer an API to work on. Even after the API is given, if the front-end team wants a different set of data to work on, they again need to wait for the changes to be made and hosted. We, front-end developers resort to techniques like storing the data in a variable or using mock API’s. To overcome this, we are working on a browser extension Interceptor, which lets you define your own response, and everytime the browser requests data from a particular URL, returns you with mock data instead of, from the server.
Informations de Base sur l'Extension
Nom | |
ID | enenfaicdcfgcnjmiigcjbmlbaoapnen |
URL Officiel | https://chrome.google.com/webstore/detail/interceptor/enenfaicdcfgcnjmiigcjbmlbaoapnen |
Description | Run web clients without backends by mocking HTTP requests |
Taille du Fichier | 314 KB |
Nombre d'Installations | 4,000 |
Version Actuelle | 0.3.0 |
Dernière Mise à Jour | 2019-09-23 |
Date de Publication | 2019-09-23 |
Évaluation | 3.00/5 Total 22 Évaluations |
Développeur | Codemancers |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/code-mancers/interceptor |
URL de la Page d'Aide | https://github.com/code-mancers/interceptor/issues |
URL de la Page de Politique de Confidentialité | https://github.com/code-mancers/interceptor/blob/master/Privacy-policy.md |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Interceptor", "description": "Run web clients without backends by mocking HTTP requests", "version": "0.3.0", "manifest_version": 2, "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "lib\/nise.min.js" ], "browser_action": { "default_title": "Interceptor", "default_popup": "index.html", "default_icon": "images\/icon.png" }, "permissions": [ "webRequest", "tabs", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "webNavigation" ] } |