Detector APIs Extension

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

Hvad er Detector APIs Extension?

Detector APIs Extension er en Chrome-udvidelse udviklet af nguyenvantuan2391996, og dens hovedfunktion er "The extension supports getting all APIs and CURL command when load a website.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Detector APIs Extension-udvidelses-CRX-fil

Download Detector APIs Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
Officiel URL https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
Beskrivelse The extension supports getting all APIs and CURL command when load a website.
Filstørrelse 53.53 KB
Antal Installationer 259
Nuværende Version 1.0.4
Senest Opdateret 2023-09-12
Udgivelsesdato 2023-03-07
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler nguyenvantuan2391996
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
Understøttede Sprog 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
}