CSS Exfil Protection

Guard against CSS data exfiltration attacks.

Cos'è CSS Exfil Protection?

CSS Exfil Protection è un'estensione di Chrome sviluppata da https://mike-gualtieri.com, e la sua funzione principale è "Guard against CSS data exfiltration attacks.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione CSS Exfil Protection

Scarica i file di estensione CSS Exfil Protection in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome CSS Exfil Protection CSS Exfil Protection
ID ibeemfhcbbikonfajhamlkdgedmekifo
URL Ufficiale https://chromewebstore.google.com/detail/css-exfil-protection/ibeemfhcbbikonfajhamlkdgedmekifo
Descrizione Guard against CSS data exfiltration attacks.
Dimensione del File 40.85 KB
Conteggio Installazioni 4,532
Versione Corrente 1.1.0
Ultimo Aggiornamento 2020-08-25
Data di Pubblicazione 2019-10-15
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore https://mike-gualtieri.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.mike-gualtieri.com/css-exfil-vulnerability-tester
URL della Pagina di Aiuto https://github.com/mlgualtieri/CSS-Exfil-Protection/issues
URL della Pagina della Politica sulla Privacy https://raw.githubusercontent.com/mlgualtieri/CSS-Exfil-Protection/master/PRIVACY.txt
Lingue Supportate 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"
        ]
    }
}