Interceptor
Run web clients without backends by mocking HTTP requests
Cos'è Interceptor?
Interceptor è un'estensione di Chrome sviluppata da Codemancers, e la sua funzione principale è "Run web clients without backends by mocking HTTP requests".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Interceptor
Scarica i file di estensione Interceptor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | enenfaicdcfgcnjmiigcjbmlbaoapnen |
URL Ufficiale | https://chrome.google.com/webstore/detail/interceptor/enenfaicdcfgcnjmiigcjbmlbaoapnen |
Descrizione | Run web clients without backends by mocking HTTP requests |
Dimensione del File | 314 KB |
Conteggio Installazioni | 4,000 |
Versione Corrente | 0.3.0 |
Ultimo Aggiornamento | 2019-09-23 |
Data di Pubblicazione | 2019-09-23 |
Valutazione | 3.00/5 Totale 22 Valutazioni |
Sviluppatore | Codemancers |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/code-mancers/interceptor |
URL della Pagina di Aiuto | https://github.com/code-mancers/interceptor/issues |
URL della Pagina della Politica sulla Privacy | https://github.com/code-mancers/interceptor/blob/master/Privacy-policy.md |
Lingue Supportate | 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" ] } |