PhishDetect

Anti-phishing browser extension. Scan suspicious pages and links.

PhishDetect là gì?

PhishDetect là một tiện ích mở rộng Chrome được phát triển bởi Claudio Guarnieri, và tính năng chính của nó là "Anti-phishing browser extension. Scan suspicious pages and links.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng PhishDetect

Tải xuống các tệp mở rộng PhishDetect dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        PhishDetect is a browser extension designed to protect you from phishing attacks. Using the menu you are able to request a link or the content of a visited page to be analyzed by our PhishDetect service and determine if it's suspicious.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PhishDetect PhishDetect
ID epnpcbfmaoafngkdanfdhdkedodcnbla
URL Chính Thức https://chromewebstore.google.com/detail/phishdetect/epnpcbfmaoafngkdanfdhdkedodcnbla
Mô tả Anti-phishing browser extension. Scan suspicious pages and links.
Kích Thước Tệp 4.73 MB
Số Lần Cài Đặt 95
Phiên Bản Hiện Tại 2020.10.23
Cập Nhật Lần Cuối 2020-10-23
Ngày Phát Hành 2020-02-27
Nhà Phát Triển Claudio Guarnieri
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://phishdetect.io/
URL Trang Trợ Giúp https://phishdetect.io/help/
URL Trang Chính Sách Bảo Mật https://phishdetect.io/help/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2020.10.23",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "manifest_version": 2,
    "name": "PhishDetect",
    "description": "__MSG_manifestDescription__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/[email protected]",
        "34": "icons\/[email protected]",
        "48": "icons\/[email protected]",
        "128": "icons\/[email protected]"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "ui\/popup\/popup.html"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{32e37b7c-894f-47bf-a68b-75f939276910}"
        }
    },
    "options_ui": {
        "page": "ui\/options\/options.html"
    },
    "background": {
        "scripts": [
            "lib\/sha256.min.js",
            "dist\/domains.js",
            "js\/utils.js",
            "js\/const.js",
            "js\/indicators.js",
            "js\/alerts.js",
            "js\/reports.js",
            "js\/alarms.js",
            "js\/scanHistory.js",
            "js\/config.js",
            "js\/background.js",
            "js\/status.js",
            "js\/init.js"
        ]
    },
    "permissions": [
        "alarms",
        "activeTab",
        "tabs",
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "history",
        "storage",
        "unlimitedStorage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/sha256.min.js",
                "fontawesome\/js\/all.js",
                "dist\/domains.js",
                "dist\/gui.js",
                "js\/utils.js",
                "dist\/gmail.js"
            ],
            "css": [
                "css\/vex.css",
                "css\/vex-theme-default.css",
                "css\/phishdetect-webmails.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "js\/utils.js",
                "js\/scanPage.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/sha256.min.js",
                "dist\/domains.js",
                "dist\/gui.js",
                "js\/utils.js",
                "dist\/roundcube.js",
                "js\/webmails.js"
            ],
            "css": [
                "css\/vex.css",
                "css\/vex-theme-default.css",
                "css\/phishdetect-webmails.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "fontawesome\/",
        "ui\/warning\/warning.html"
    ]
}