Detector APIs Extension

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

Was ist Detector APIs Extension?

Detector APIs Extension ist eine Chrome-Erweiterung, die von nguyenvantuan2391996 entwickelt wurde, und ihr Hauptmerkmal ist "The extension supports getting all APIs and CURL command when load a website.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Detector APIs Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Detector APIs Extension-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
Offizielle URL https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
Beschreibung The extension supports getting all APIs and CURL command when load a website.
Dateigröße 53.53 KB
Installationsanzahl 259
Aktuelle Version 1.0.4
Letztes Update 2023-09-12
Veröffentlichungsdatum 2023-03-07
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler nguyenvantuan2391996
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
Unterstützte Sprachen 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
}