Project CAVE
Chrome Anti-Virus Extension. It is a google chrome application project aimed to protect the browsing experience of the users.
Project CAVE란 무엇입니까?
Project CAVE은(는) Max Chu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Anti-Virus Extension. It is a google chrome application project aimed to protect the browsing experience of the users."입니다.
Project CAVE 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
NOTE: Project CAVE is still under development. Bugs and error is inevitable. Project CAVE is the Final Year Project of my Bachelor Degree in Asia Pacific University. It is a Cloud Antivirus client which gather the data in the user browser and send to CAVE server. Then, CAVE server will reply the scan result to the client. The client will use the result to notify if there is any harmful webpage and files currently on the webpage. Project CAVE is powered by Zillya Antivirus SDK. TCP/IP connectivity is translated by Websockify. Project CAVE server is currently OFFLINE. The Chrome App will not work while the server is OFFLINE.
확장 프로그램 기본 정보
이름 | |
ID | kdcpgcldppkhphfjdjanjnphmfadnigo |
공식 URL | https://chrome.google.com/webstore/detail/project-cave/kdcpgcldppkhphfjdjanjnphmfadnigo |
설명 | Chrome Anti-Virus Extension. It is a google chrome application project aimed to protect the browsing experience of the users. |
파일 크기 | 88.62 KB |
설치 횟수 | 58 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2014-07-11 |
출시 날짜 | 2014-07-11 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | Max Chu |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Project CAVE", "description": "Chrome Anti-Virus Extension. It is a google chrome application project aimed to protect the browsing experience of the users.", "version": "1.0.0", "manifest_version": 2, "icons": { "16": "image\/icon\/icon16bk.png", "48": "image\/icon\/icon48bk.png", "128": "image\/icon\/icon128bk.png" }, "browser_action": { "default_icon": "image\/icon\/icon16bk.png", "default_title": "CAVE", "default_popup": "popup.html" }, "options_page": "options.html", "permissions": [ "storage" ], "author": "Max Chu Chee Wee", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery.min.js", "cave.js" ], "run_at": "document_end" } ] } |