Inspect API calls
Inspect API calls extension
Cos'è Inspect API calls?
Inspect API calls è un'estensione di Chrome sviluppata da matteopieroni, e la sua funzione principale è "Inspect API calls extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Inspect API calls
Scarica i file di estensione Inspect API calls 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
Using this extension you can inspect the API calls made by the website you open. It shows information regarding: url, duration, method (GET, POST, PATCH, PUT, DELETE), status (success, pending, error). You can filter searching a string in a url, order the data, visualise duplicate, insecure or error calls. The code for this extension is open sourced and you can see it on Github: https://github.com/MatteoPieroni/inspect-api-extension. To request a new feature, please open an issue in the github repo: https://github.com/MatteoPieroni/inspect-api-extension/issues
Informazioni di Base sull'Estensione
Nome | Inspect API calls |
ID | peblgjafllfpndniijaemianngmokbcf |
URL Ufficiale | https://chromewebstore.google.com/detail/inspect-api-calls/peblgjafllfpndniijaemianngmokbcf |
Descrizione | Inspect API calls extension |
Dimensione del File | 58.93 KB |
Conteggio Installazioni | 1,955 |
Versione Corrente | 0.2.0 |
Ultimo Aggiornamento | 2020-04-30 |
Data di Pubblicazione | 2020-04-28 |
Sviluppatore | matteopieroni |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/MatteoPieroni/inspect-api-extension |
URL della Pagina di Aiuto | https://github.com/MatteoPieroni/inspect-api-extension/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Inspect API calls", "description": "Inspect API calls extension", "version": "0.2.0", "browser_action": { "default_popup": "index.html", "default_title": "Open the popup" }, "background": { "scripts": [ "background.js" ] }, "icons": { "48": "Icon48.png", "128": "Icon128.png" }, "permissions": [ "webRequest", "webNavigation", " |