Detector APIs Extension

The extension supports getting all APIs and CURL command when load a website.

Detector APIs Extension là gì?

Detector APIs Extension là một tiện ích mở rộng Chrome được phát triển bởi nguyenvantuan2391996, và tính năng chính của nó là "The extension supports getting all APIs and CURL command when load a website.".

Ả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 Detector APIs Extension

Tải xuống các tệp mở rộng Detector APIs Extension 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

                        The extension was developed by Tuan Nguyen, who is a software engineer.

The detector APIs extension doesn't show ads and doesn't send users' data anywhere. It's fully open-source: https://github.com/nguyenvantuan2391996/extensions-development/tree/master/detector-apis-extension

Before you install it, disable similar extensions. Enjoy watching!

Contact me at: [email protected]

Donate for me at: https://paypal.me/Newslette247

Version 1.0.4: adding detect api with post and put method                    

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

Tên Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
URL Chính Thức https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
Mô tả The extension supports getting all APIs and CURL command when load a website.
Kích Thước Tệp 53.53 KB
Số Lần Cài Đặt 259
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2023-09-12
Ngày Phát Hành 2023-03-07
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển nguyenvantuan2391996
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Detector APIs Extension",
    "description": "The extension supports getting all APIs and CURL command when load a website.",
    "version": "1.0.4",
    "action": {
        "default_popup": "src\/popup.html",
        "default_icon": "images\/detector-apis-extension.png"
    },
    "icons": {
        "128": "images\/detector-apis-extension.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/constants.js",
                "js\/utils.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "webRequest"
    ],
    "manifest_version": 3
}