Postman Interceptor

Capture requests from any website and send them to Postman Client.

Vad är Postman Interceptor?

Postman Interceptor är en Chrome-tillägg utvecklad av https://postman.com, och dess huvudfunktion är "Capture requests from any website and send them to Postman Client.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Postman Interceptor-förlängningens CRX-fil

Ladda ner Postman Interceptor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Postman Interceptor helps you send requests which use browser cookies through the Postman app. 
It can also send headers which are normally restricted by Chrome but are critical for testing APIs. The Interceptor makes this process painless. Something that would have required a proxy earlier can now be achieved without any installation steps or extra configuration.                    

Grundläggande Information om Tillägg

Namn Postman Interceptor Postman Interceptor
ID aicmkgpgakddgnaphhhpliifpcfhicfo
Officiell webbadress https://chromewebstore.google.com/detail/postman-interceptor/aicmkgpgakddgnaphhhpliifpcfhicfo
Beskrivning Capture requests from any website and send them to Postman Client.
Filstorlek 459 KB
Antal Installationer 800,000
Aktuell Version 3.0.5
Senast Uppdaterad 2024-01-05
Publiceringsdatum 2020-06-18
Betyg 4.32/5 Totalt 948 Betyg
Utvecklare https://postman.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://www.postman.com
Hjälpsida URL https://github.com/postmanlabs/postman-app-support/issues
URL till Sekretesspolicy Sidan https://www.getpostman.com/licenses/privacy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Postman Interceptor",
    "description": "Capture requests from any website and send them to Postman Client.",
    "icons": {
        "16": "assets\/interceptor_16x16.png",
        "32": "assets\/interceptor_32x32.png",
        "48": "assets\/interceptor_48x48.png",
        "128": "assets\/interceptor_128x128.png"
    },
    "action": {
        "default_title": "Postman Interceptor",
        "default_icon": "assets\/interceptor_48x48.png",
        "default_popup": "html\/index.html"
    },
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "host_permissions": [
        "*:\/\/*\/**"
    ],
    "permissions": [
        "webRequest",
        "nativeMessaging",
        "storage",
        "cookies"
    ],
    "manifest_version": 3,
    "version": "3.0.5"
}