CSS Exfil Protection

Guard against CSS data exfiltration attacks.

CSS Exfil Protection là gì?

CSS Exfil Protection là một tiện ích mở rộng Chrome được phát triển bởi https://mike-gualtieri.com, và tính năng chính của nó là "Guard against CSS data exfiltration 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 CSS Exfil Protection

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

                        Guard your browser against CSS Exfil attacks!

CSS Exfil is a method attackers can use to steal data from web pages using Cascading Style Sheets (CSS).  This plugin sanitizes and blocks any CSS rules which may be designed to steal data.                    

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

Tên CSS Exfil Protection CSS Exfil Protection
ID ibeemfhcbbikonfajhamlkdgedmekifo
URL Chính Thức https://chromewebstore.google.com/detail/css-exfil-protection/ibeemfhcbbikonfajhamlkdgedmekifo
Mô tả Guard against CSS data exfiltration attacks.
Kích Thước Tệp 40.85 KB
Số Lần Cài Đặt 4,532
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2020-08-25
Ngày Phát Hành 2019-10-15
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://mike-gualtieri.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.mike-gualtieri.com/css-exfil-vulnerability-tester
URL Trang Trợ Giúp https://github.com/mlgualtieri/CSS-Exfil-Protection/issues
URL Trang Chính Sách Bảo Mật https://raw.githubusercontent.com/mlgualtieri/CSS-Exfil-Protection/master/PRIVACY.txt
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS Exfil Protection",
    "version": "1.1.0",
    "description": "Guard against CSS data exfiltration attacks.",
    "content_security_policy": "script-src 'self'; object-src 'self'; style-src 'self'",
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage",
        "tabs"
    ],
    "homepage_url": "https:\/\/www.mike-gualtieri.com\/css-exfil-vulnerability-tester",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "icons\/icon-48.png"
        },
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "popup.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}