WebRTC Protect - Protect IP Leak

Hides your private and public IP addresses by configuring how WebRTC's network traffic is routed.

Τι είναι το WebRTC Protect - Protect IP Leak;

Το WebRTC Protect - Protect IP Leak είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον MeryDev, και η κύρια λειτουργία του είναι "Hides your private and public IP addresses by configuring how WebRTC's network traffic is routed.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης WebRTC Protect - Protect IP Leak

Λήψη αρχείων επέκτασης WebRTC Protect - Protect IP Leak σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Protect against WebRTC leaking your public and private IP addresses. This extension configures how WebRTC's network traffic is routed by altering the browser's privacy settings also controls whether WebRTC Media Device Enumeration API returns anything or not.

By default, WebRTC is blocked and your browser will not be able to use it. However, using the toolbar button, you can temporarily enable WebRTC access. Even when disabling the extension from the toolbar button, still your private address is protected by default.

Note: As of version 0.1.2, the extension returns an empty array when "WebRTC Media Device Enumeration API" is called. You can disable this action by disabling the extension from the toolbar button or permanently disable it from the options page.

Features:
1. Configures WebRTC to not use certain IP addresses or protocols:
2. Hide your private IP address to the public internet
3. Hide your public IP addresses (e.g. an ISP address of the VPN) associated with network interfaces
4. Require WebRTC traffic to go through proxy servers. If UDP is not supported, non-proxied UDP traffic is turned off.

Note: Since when this extension is enabled, the potential network paths and protocols used by WebRTC is limited,  the extension might affect the performance of websites that use WebRTC for audio/video or real-time data communication. You can turn the extension off from the toolbar button to improve the performance while using the WebRTC.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα WebRTC Protect - Protect IP Leak WebRTC Protect - Protect IP Leak
ID bkmmlbllpjdpgcgdohbaghfaecnddhni
Επίσημο URL https://chromewebstore.google.com/detail/webrtc-protect-protect-ip/bkmmlbllpjdpgcgdohbaghfaecnddhni
Περιγραφή Hides your private and public IP addresses by configuring how WebRTC's network traffic is routed.
Μέγεθος Αρχείου 147 KB
Αριθμός Εγκαταστάσεων 40,886
Τρέχουσα Έκδοση 0.2.2
Τελευταία Ενημέρωση 2023-07-30
Ημερομηνία Δημοσίευσης 2019-07-17
Αξιολόγηση 4.38/5 Συνολικά 26 Αξιολογήσεις
Προγραμματιστής MeryDev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/webrtc-protect.html
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/webrtc-protect.html
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/mery.dev.txt
Υποστηριζόμενες Γλώσσες id,de,en,fr,nl,no,tr,es,it,hu,pl,pt-BR,pt-PT,ro,sv,cs,el,bg,ru,uk,iw,hi,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebRTC Protect - Protect IP Leak",
    "description": "__MSG_description__",
    "version": "0.2.2",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "storage",
        "privacy",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "action": [],
    "homepage_url": "https:\/\/webextension.org\/listing\/webrtc-protect.html",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "options_ui": {
        "page": "\/data\/options\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/data\/inject\/main.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true,
            "world": "MAIN"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/data\/inject\/isolated.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true,
            "world": "ISOLATED"
        }
    ],
    "commands": {
        "_execute_action": []
    }
}