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 с друзьями, чтобы легко установить расширения 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
Электронная почта [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"
        ]
    }
}