SafeLink

SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…

SafeLink là gì?

SafeLink là một tiện ích mở rộng Chrome được phát triển bởi James Jin, và tính năng chính của nó là "SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…".

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

screenshot

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

Tải xuống các tệp mở rộng SafeLink 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

                        SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a scale of five different factors and given a score that would determine if it is malicious or not. The non-malicious links would appear as usual while the malicious links will appear as highlighted.                    

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

Tên SafeLink SafeLink
ID afjdebafmhbnkhihbopohflecbilnbdj
URL Chính Thức https://chromewebstore.google.com/detail/safelink/afjdebafmhbnkhihbopohflecbilnbdj
Mô tả SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…
Kích Thước Tệp 3.72 MB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2021-02-17
Ngày Phát Hành 2021-02-17
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển James Jin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://jfjin.github.io/SafeLinkWebsite/
URL Trang Chính Sách Bảo Mật http://safelinkapp.com/privacy.html
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SafeLink",
    "version": "2.0",
    "manifest_version": 2,
    "icons": {
        "128": "safelink logo 2.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js",
                "require.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "SafeLink"
    },
    "permissions": [
        "http:\/\/127.0.0.1\/*",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/www.coolmath.com\/",
        "https:\/\/safe-link.herokuapp.com\/"
    ]
}