CSS Exfil Protection

Guard against CSS data exfiltration attacks.

CSS Exfil Protection란 무엇입니까?

CSS Exfil Protection은(는) https://mike-gualtieri.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Guard against CSS data exfiltration attacks."입니다.

확장 프로그램 스크린샷

screenshot

CSS Exfil Protection 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        ]
    }
}