CSS Exfil Protection

Guard against CSS data exfiltration attacks.

什麼是CSS Exfil Protection?

CSS Exfil Protection是由https://mike-gualtieri.com開發的Chrome擴展程式,該擴展的主要功能是“Guard against CSS data exfiltration attacks.”。

擴展截圖

screenshot

下載CSS Exfil Protection擴展crx文件

下載CSS Exfil Protection擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 CSS Exfil Protection CSS Exfil Protection
ID ibeemfhcbbikonfajhamlkdgedmekifo
官方網址 https://chromewebstore.google.com/detail/css-exfil-protection/ibeemfhcbbikonfajhamlkdgedmekifo
簡介 Guard against CSS data exfiltration attacks.
檔案大小 40.85 KB
安裝次數 4,532
目前版本 1.1.0
更新時間 2020-08-25
上架時間 2019-10-15
評分 4.00/5 共 3 次評分
開發者 https://mike-gualtieri.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.mike-gualtieri.com/css-exfil-vulnerability-tester
說明頁面URL https://github.com/mlgualtieri/CSS-Exfil-Protection/issues
隱私政策頁面URL https://raw.githubusercontent.com/mlgualtieri/CSS-Exfil-Protection/master/PRIVACY.txt
支援的語言 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"
        ]
    }
}