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은(는) expzhizhuo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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:\/\/*\/*" ] } ] } |