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.

Что такое fofa search?

fofa search - это расширение Chrome, разработанное expzhizhuo, и его основная функция - "This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения fofa search

Скачайте файлы расширений fofa search в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название fofa search fofa search
ID jefdldfaoblleggicddaencogblfnodb
Официальный URL https://chromewebstore.google.com/detail/fofa-search/jefdldfaoblleggicddaencogblfnodb
Описание This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.
Размер файла 575 KB
Количество установок 352
Текущая Версия 1.1.3
Последнее Обновление 2024-01-11
Дата публикации 2023-02-22
Рейтинг 5.00/5 Всего 1 оценок
Разработчик expzhizhuo
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/expzhizhuo/fofa-search/
URL страницы помощи https://github.com/expzhizhuo/fofa-search/
URL страницы политики конфиденциальности https://github.com/zhizhuoshuma/Privacy-policy
Поддерживаемые языки 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:\/\/*\/*"
            ]
        }
    ]
}