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"
        ]
    }
}