Detector APIs Extension

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

Co je Detector APIs Extension?

Detector APIs Extension je rozšíření Chrome vyvinuté nguyenvantuan2391996, a jeho hlavní funkcí je „The extension supports getting all APIs and CURL command when load a website.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Detector APIs Extension

Stáhněte si soubory rozšíření Detector APIs Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
Oficiální URL https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
Popis The extension supports getting all APIs and CURL command when load a website.
Velikost souboru 53.53 KB
Počet instalací 259
Aktuální Verze 1.0.4
Poslední Aktualizace 2023-09-12
Datum Vydání 2023-03-07
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář nguyenvantuan2391996
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
Podporované Jazyky 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
}