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
公式URL 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
Eメール [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"
        ]
    }
}