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.

Co je fofa search?

fofa search je rozšíření Chrome vyvinuté expzhizhuo, a jeho hlavní funkcí je „This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření fofa search

Stáhněte si soubory rozšíření fofa search 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 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.                    

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

Název fofa search fofa search
ID jefdldfaoblleggicddaencogblfnodb
Oficiální URL https://chromewebstore.google.com/detail/fofa-search/jefdldfaoblleggicddaencogblfnodb
Popis This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.
Velikost souboru 575 KB
Počet instalací 352
Aktuální Verze 1.1.3
Poslední Aktualizace 2024-01-11
Datum Vydání 2023-02-22
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář expzhizhuo
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/expzhizhuo/fofa-search/
URL Stránky Nápovědy https://github.com/expzhizhuo/fofa-search/
URL Stránky Zásad Ochrany Soukromí https://github.com/zhizhuoshuma/Privacy-policy
Podporované Jazyky 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:\/\/*\/*"
            ]
        }
    ]
}