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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Max Chu และคุณลักษณะหลักของมันคือ "Chrome Anti-Virus Extension. It is a google chrome application project aimed to protect the browsing experience of the users."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Project CAVE
ดาวน์โหลดไฟล์ส่วนขยาย Project CAVE ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } ] } |