Detector APIs Extension

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

O que é Detector APIs Extension?

Detector APIs Extension é uma extensão do Chrome desenvolvida por nguyenvantuan2391996, e sua principal característica é "The extension supports getting all APIs and CURL command when load a website.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Detector APIs Extension

Baixe arquivos de extensão Detector APIs Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
URL Oficial https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
Descrição The extension supports getting all APIs and CURL command when load a website.
Tamanho do Arquivo 53.53 KB
Contagem de Instalações 259
Versão Atual 1.0.4
Última Atualização 2023-09-12
Data de Publicação 2023-03-07
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor nguyenvantuan2391996
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
Idiomas Suportados 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
}