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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://blog.flashsoft.eu, και η κύρια λειτουργία του είναι "This extension blocks the official method to detect you use brave browser, install only on Brave browser.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Brave Detection Block

Λήψη αρχείων επέκτασης Brave Detection Block σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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