CSS Exfil Protection

Guard against CSS data exfiltration attacks.

ما هو CSS Exfil Protection؟

CSS Exfil Protection هو إضافة Chrome تم تطويرها بواسطة https://mike-gualtieri.com، والميزة الرئيسية لها هي "Guard against CSS data exfiltration attacks.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة CSS Exfil Protection

قم بتنزيل ملفات الامتداد CSS Exfil Protection بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.mike-gualtieri.com/css-exfil-vulnerability-tester
عنوان صفحة المساعدة https://github.com/mlgualtieri/CSS-Exfil-Protection/issues
عنوان صفحة سياسة الخصوصية 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"
        ]
    }
}