No Opener, No Phishers

Reduce the risk of falling victim to phishing attacks.

No Opener, No Phishers là gì?

No Opener, No Phishers là một tiện ích mở rộng Chrome được phát triển bởi Jamie Farrelly, và tính năng chính của nó là "Reduce the risk of falling victim to phishing attacks.".

Ả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 No Opener, No Phishers

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

                        Any website that uses target="_blank" on their links, allows user generated content and doesn't use the rel="noopener" attribute on their links (I'm looking at you Facebook, Twitter etc.) is vulnerable to a scarily simple phishing attack.

For an example of this kind of attack, view this example that I've made: https://jamiefarrelly.github.io/Rel-NoOpener-Example/

This Chrome extension is as simple as it gets, all it does is add "noopener noreferrer" to the rel attribute on all links on the pages that you're visiting so that you won't fall victim to this type of phishing attack.

Open source on Github https://github.com/JamieFarrelly/No-Opener-No-Phishers                    

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

Tên No Opener, No Phishers No Opener, No Phishers
ID hieejlcohhkjbpiihgphcnaaiehphike
URL Chính Thức https://chromewebstore.google.com/detail/no-opener-no-phishers/hieejlcohhkjbpiihgphcnaaiehphike
Mô tả Reduce the risk of falling victim to phishing attacks.
Kích Thước Tệp 274 KB
Số Lần Cài Đặt 851
Phiên Bản Hiện Tại 2
Cập Nhật Lần Cuối 2019-06-17
Ngày Phát Hành 2019-06-17
Đánh Giá 4.78/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Jamie Farrelly
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No Opener, No Phishers",
    "version": "2",
    "description": "Reduce the risk of falling victim to phishing attacks.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/background.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "images\/icon-16x16.png",
        "19": "images\/icon-19x19.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png",
        "130": "images\/icon-130x130.png",
        "550": "images\/icon-550x550.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-16x16.png"
    }
}