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.

Hvad er fofa search?

fofa search er en Chrome-udvidelse udviklet af expzhizhuo, og dens hovedfunktion er "This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download fofa search-udvidelses-CRX-fil

Download fofa search-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn fofa search fofa search
ID jefdldfaoblleggicddaencogblfnodb
Officiel URL https://chromewebstore.google.com/detail/fofa-search/jefdldfaoblleggicddaencogblfnodb
Beskrivelse This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.
Filstørrelse 575 KB
Antal Installationer 352
Nuværende Version 1.1.3
Senest Opdateret 2024-01-11
Udgivelsesdato 2023-02-22
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler expzhizhuo
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/expzhizhuo/fofa-search/
Hjælpeside-URL https://github.com/expzhizhuo/fofa-search/
URL til Fortrolighedspolitik Side https://github.com/zhizhuoshuma/Privacy-policy
Understøttede Sprog 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:\/\/*\/*"
            ]
        }
    ]
}