Detector APIs Extension

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

Co to jest Detector APIs Extension?

Detector APIs Extension to rozszerzenie Chrome opracowane przez nguyenvantuan2391996, a jego główną funkcją jest „The extension supports getting all APIs and CURL command when load a website.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Detector APIs Extension

Pobierz pliki rozszerzeń Detector APIs Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
Oficjalny URL https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
Opis The extension supports getting all APIs and CURL command when load a website.
Rozmiar pliku 53.53 KB
Liczba instalacji 259
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2023-09-12
Data Publikacji 2023-03-07
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper nguyenvantuan2391996
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
Obsługiwane Języki 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
}