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文件

下載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.                    

擴展基本資訊

名稱 Project CAVE Project CAVE
ID kdcpgcldppkhphfjdjanjnphmfadnigo
官方網址 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"
        }
    ]
}