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
公式URL 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
Eメール [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
}