CSS Exfil Protection

Guard against CSS data exfiltration attacks.

CSS Exfil Protection क्या है?

CSS Exfil Protection https://mike-gualtieri.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Guard against CSS data exfiltration attacks."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CSS Exfil Protection एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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"
        ]
    }
}