WrapAPI

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

WrapAPI là gì?

WrapAPI là một tiện ích mở rộng Chrome được phát triển bởi https://wrapapi.com, và tính năng chính của nó là "Captures requests and sends them to the WrapAPI service to be turned into APIs. For more information, visit http://wrapapi.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng WrapAPI

Tải xuống các tệp mở rộng WrapAPI dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WrapAPI WrapAPI
ID fmnddkfmloenccahfiaflnkpngndkafm
URL Chính Thức https://chromewebstore.google.com/detail/wrapapi/fmnddkfmloenccahfiaflnkpngndkafm
Mô tả Captures requests and sends them to the WrapAPI service to be turned into APIs. For more information, visit http://wrapapi.com
Kích Thước Tệp 5.53 MB
Số Lần Cài Đặt 2,596
Phiên Bản Hiện Tại 2.2.2
Cập Nhật Lần Cuối 2022-09-06
Ngày Phát Hành 2018-05-21
Đánh Giá 4.50/5 Tổng số 12 Đánh Giá
Nhà Phát Triển https://wrapapi.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}