Detector APIs Extension

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

什麼是Detector APIs Extension?

Detector APIs Extension是由nguyenvantuan2391996開發的Chrome擴展程式,該擴展的主要功能是“The extension supports getting all APIs and CURL command when load a website.”。

擴展截圖

screenshot
screenshot
screenshot

下載Detector APIs Extension擴展crx文件

下載Detector APIs Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
官方網址 https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
簡介 The extension supports getting all APIs and CURL command when load a website.
檔案大小 53.53 KB
安裝次數 259
目前版本 1.0.4
更新時間 2023-09-12
上架時間 2023-03-07
評分 5.00/5 共 2 次評分
開發者 nguyenvantuan2391996
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
支援的語言 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
}