Cyvore background extension
Extension for scanning URLs with Cyvore engine that runs in the background and alerts users if a site visited puts them at risk.
Cyvore background extension란 무엇입니까?
Cyvore background extension은(는) Info에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for scanning URLs with Cyvore engine that runs in the background and alerts users if a site visited puts them at risk."입니다.
확장 프로그램 스크린샷
Cyvore background extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Enjoy the web without fear with Cyvore, the smart extension that scans every URL you visit with its powerful OPR engine. Cyvore protects you from phishing, fraud, malware, and other online threats that can harm your security or privacy. We value and respects your privacy by not collecting or using any of your personal data. Cyvore is more than just a URL scanner. It is a cutting-edge engine that uses advanced threat intelligence and OPR engine (optical phishing recognition) to analyze every site you visit. We detects and alerts you from malicious sites before they can steal your data or infect your device. With Cyvore, you can browse the web with confidence and peace of mind. Our extension runs quietly in the background and alerts you if a site poses any risk to your security or privacy. Cyvore is developed by a team of passionate and talented cybersecurity experts who are dedicated to making the internet a safer place. We invite you to join our mission and contribute to our open-source projects on GitHub.
확장 프로그램 기본 정보
이름 | Cyvore background extension |
ID | phckbcfhlbbjngekibccppoelnfiaoep |
공식 URL | https://chromewebstore.google.com/detail/cyvore-background-extensi/phckbcfhlbbjngekibccppoelnfiaoep |
설명 | Extension for scanning URLs with Cyvore engine that runs in the background and alerts users if a site visited puts them at risk. |
파일 크기 | 15.64 KB |
설치 횟수 | 104 |
현재 버전 | 1.2 |
최근 업데이트 | 2023-11-08 |
출시 날짜 | 2022-06-29 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | Info |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://cyvore.com |
도움말 페이지 URL | https://cyvore.com |
개인정보 보호 정책 페이지 URL | https://www.privacypolicies.com/live/a29b7011-0a50-4b31-94ba-eb370911c0ed |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cyvore background extension", "version": "1.2", "manifest_version": 3, "description": "Extension for scanning URLs with Cyvore engine that runs in the background and alerts users if a site visited puts them at risk.", "icons": { "16": "assets\/cySm.png", "32": "assets\/cyMd.png" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "options_page": "options.html" } |