WrapAPI

Captures requests and sends them to the WrapAPI service to be turned into APIs. For more information, visit http://wrapapi.com

Was ist WrapAPI?

WrapAPI ist eine Chrome-Erweiterung, die von https://wrapapi.com entwickelt wurde, und ihr Hauptmerkmal ist "Captures requests and sends them to the WrapAPI service to be turned into APIs. For more information, visit http://wrapapi.com".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

WrapAPI-Erweiterungs-CRX-Datei herunterladen

Laden Sie WrapAPI-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        For more details, visit https://wrapapi.com

WrapAPI is a tool to build APIs on top of any existing website, to scrape and extract data or to automate processes. The days of using Chrome DevTools' Network tab or Charles Proxy are over! Visit our website at https://wrapapi.com to learn more.                    

Grundlegende Informationen zur Erweiterung

Name WrapAPI WrapAPI
ID fmnddkfmloenccahfiaflnkpngndkafm
Offizielle URL https://chromewebstore.google.com/detail/wrapapi/fmnddkfmloenccahfiaflnkpngndkafm
Beschreibung Captures requests and sends them to the WrapAPI service to be turned into APIs. For more information, visit http://wrapapi.com
Dateigröße 5.53 MB
Installationsanzahl 2,596
Aktuelle Version 2.2.2
Letztes Update 2022-09-06
Veröffentlichungsdatum 2018-05-21
Bewertung 4.50/5 Insgesamt 12 Bewertungen
Entwickler https://wrapapi.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WrapAPI",
    "version": "2.2.2",
    "description": "Captures requests and sends them to the WrapAPI service to be turned into APIs. For more information, visit http:\/\/wrapapi.com",
    "icons": {
        "32": "assets\/icon32.png",
        "64": "assets\/icon64.png",
        "128": "assets\/icon128.png"
    },
    "action": {
        "default_title": "Open WrapAPI",
        "default_icon": "assets\/icon32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wrapapi.com\/*"
            ],
            "js": [
                "installed.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/wrapapi.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "manifest_version": 3
}