fofa search

This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.

O que é fofa search?

fofa search é uma extensão do Chrome desenvolvida por expzhizhuo, e sua principal característica é "This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão fofa search

Baixe arquivos de extensão fofa search 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 Fofa Search plugin for Chrome automatically checks whether Shodan has any information for the current website. Is the website also running FTP, DNS, SSH or some unusual service? With this plugin you can see all the info that Shodan has collected on a given website/ domain.                    

Informações Básicas da Extensão

Nome fofa search fofa search
ID jefdldfaoblleggicddaencogblfnodb
URL Oficial https://chromewebstore.google.com/detail/fofa-search/jefdldfaoblleggicddaencogblfnodb
Descrição This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.
Tamanho do Arquivo 575 KB
Contagem de Instalações 352
Versão Atual 1.1.3
Última Atualização 2024-01-11
Data de Publicação 2023-02-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor expzhizhuo
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/expzhizhuo/fofa-search/
URL da Página de Ajuda https://github.com/expzhizhuo/fofa-search/
URL da Página de Política de Privacidade https://github.com/zhizhuoshuma/Privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_extDesc__",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "version": "1.1.3",
    "default_locale": "en",
    "action": {
        "default_icon": {
            "16": "assets\/16.png",
            "48": "assets\/48.png",
            "128": "assets\/128.png"
        },
        "default_popup": "popup.html",
        "default_title": "fofa search"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "cookies"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/inject.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}