Brave Detection Block

This extension blocks the official method to detect you use brave browser, install only on Brave browser.

Brave Detection Block란 무엇입니까?

Brave Detection Block은(는) https://blog.flashsoft.eu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension blocks the official method to detect you use brave browser, install only on Brave browser."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Brave Detection Block 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Brave Detection Block BDB:

Brave is a privacy-oriented browser. Despite this fact, it has some characteristics that break some privacy assurances.

One of them is an official method for a website to detect you are running brave.

This method involves two custom properties on the navigator object, accessible at `window.navigator.brave`.

This extension will delete `window.navigator.brave` and make it impossible to detect if you are running Brave browser.

Change Log at: https://github.com/andrei0x309/Brave-Detection-Blocker-Chrome-Extension/blob/main/CHANGELOG.md

To increase the effectiveness of this extension, please make sure you have also turned both Solana brave wallet and Ethereum brave wallet from your browser settings, as they both leave fingerprints like 'window.solanaBrave'. ( there's a screenshot of the settings page for disabling the wallet in the repo)

Please use a wallet that doesn't leave fingerprints, such as what browser you are using.

I wrote one open-source implementation of EVM wallet here that does ZERO tracking. Check it out here https://github.com/andrei0x309/clear-wallet.

Privacy Policy: https://github.com/andrei0x309/Brave-Detection-Blocker-Chrome-Extension/blob/main/PRIVACY_POLICY.md

Git Repo: https://https://github.com/andrei0x309/Brave-Detection-Blocker-Chrome-Extension                    

확장 프로그램 기본 정보

이름 Brave Detection Block Brave Detection Block
ID ckkhcgikplgdginlidcaomgjahmddjgb
공식 URL https://chromewebstore.google.com/detail/brave-detection-block/ckkhcgikplgdginlidcaomgjahmddjgb
설명 This extension blocks the official method to detect you use brave browser, install only on Brave browser.
파일 크기 227 KB
설치 횟수 801
현재 버전 1.2.1
최근 업데이트 2023-02-05
출시 날짜 2022-03-26
평점 5.00/5 총 1 개의 평점
개발자 https://blog.flashsoft.eu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/andrei0x309/Brave-Detection-Blocker-Chrome-Extension
도움말 페이지 URL https://github.com/andrei0x309/Brave-Detection-Blocker-Chrome-Extension
개인정보 보호 정책 페이지 URL https://github.com/andrei0x309/yup-live-chrome-extension/blob/main/PRIVACY_POLICY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.2.1",
    "version_name": "1.2.1",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/BDB-ICON16.png",
            "32": "images\/BDB-ICON32.png",
            "48": "images\/BDB-ICON48.png",
            "128": "images\/BDB-ICON128.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "block-script.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/BDB-ICON16.png",
        "32": "images\/BDB-ICON32.png",
        "48": "images\/BDB-ICON48.png",
        "128": "images\/BDB-ICON128.png",
        "256": "images\/BDB-ICON256.png",
        "512": "images\/BDB-ICON512.png"
    }
}