ApiRequest.io Ajax Capture Debugging Tool

Capture API Requests and Responses in browser and share via a link. Makes collaborative debugging and issue solving easier.

Τι είναι το ApiRequest.io Ajax Capture Debugging Tool;

Το ApiRequest.io Ajax Capture Debugging Tool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.moesif.com, και η κύρια λειτουργία του είναι "Capture API Requests and Responses in browser and share via a link. Makes collaborative debugging and issue solving easier.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ApiRequest.io Ajax Capture Debugging Tool

Λήψη αρχείων επέκτασης ApiRequest.io Ajax Capture Debugging Tool σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

 ApiRequest.io Capture This extension allows you to capture AJAX HTTP requests and responses made to an API from any websites such as from a React single-page app. View the REST API traffic in a workspace which is saved for 30-days. The workspace URL is shareable like a Google Doc link and protected by a time-limited signed URL. Background: When debugging single-page apps by inspecting API network traffic, often developers need to manually copy/paste the JSON payload to share with others for help on API behavior. The ApiRequest.io capture tool allows you to do that much easier. What makes this tool different? Compared to other API request captures tools like Postman Interceptor, we actually captures the entire API call (i.e. both request and response and full headers and body) and make it easily sharable. About the latest update: now this chrome extension works with some website that had stricter policy. Note: If you are a developer for the website that you want to capture all API calls (aka Ajax calls), the most robust solutions is to use our free browser SDK: https://github.com/Moesif/moesif-browser-js You will need a free Moesif account, but the features and queries are much more advanced. You only need the below code snippet ```  
```

About Moesif:

Moesif (https://www.moesif.com) enables API teams at UPS, Radar, Deloitte, and others to deeply understand customer API usage and ship better API products with user-centric API analytics and monitoring, which enables you to:
    - Understand customer API usage with user behavior analytics.
    - Debug issues quickly with high-cardinality API logs and metrics.
    - Get alerted of problems that impact customers.
    - Track API KPIs with custom dashboards.
    - Trigger behavioral emails that keep customers informed.
    - Detect and Block API threats and abuse including OWASP Top 10 API threats.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ApiRequest.io Ajax Capture Debugging Tool ApiRequest.io Ajax Capture Debugging Tool
ID aeojbjinmmhjenohjehcidmappiodhjm
Επίσημο URL https://chrome.google.com/webstore/detail/apirequestio-ajax-capture/aeojbjinmmhjenohjehcidmappiodhjm
Περιγραφή Capture API Requests and Responses in browser and share via a link. Makes collaborative debugging and issue solving easier.
Μέγεθος Αρχείου 943 KB
Αριθμός Εγκαταστάσεων 2,000
Τρέχουσα Έκδοση 0.0.5
Τελευταία Ενημέρωση 2020-10-16
Ημερομηνία Δημοσίευσης 2017-04-30
Αξιολόγηση 4.67/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής https://www.moesif.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.apirequest.io/debugging-tools
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.5",
    "name": "ApiRequest.io Ajax Capture Debugging Tool",
    "short_name": "Api Capture",
    "manifest_version": 2,
    "description": "Capture API Requests and Responses in browser and share via a link. Makes collaborative debugging and issue solving easier.",
    "browser_action": {
        "default_title": "ApiRequest.io Capture",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "web_accessible_resources": [
        "inject.html",
        "js\/inject.bundle.js",
        "js\/contentscript.bundle.js"
    ],
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "webRequest",
        "",
        "webRequestBlocking"
    ],
    "content_security_policy": "default-src 'self'; script-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
}