Detector APIs Extension

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

Cos'è Detector APIs Extension?

Detector APIs Extension è un'estensione di Chrome sviluppata da nguyenvantuan2391996, e la sua funzione principale è "The extension supports getting all APIs and CURL command when load a website.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Detector APIs Extension

Scarica i file di estensione Detector APIs Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
URL Ufficiale https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
Descrizione The extension supports getting all APIs and CURL command when load a website.
Dimensione del File 53.53 KB
Conteggio Installazioni 259
Versione Corrente 1.0.4
Ultimo Aggiornamento 2023-09-12
Data di Pubblicazione 2023-03-07
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore nguyenvantuan2391996
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
Lingue Supportate 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
}