RubberGlove

Blocks common browser fingerprint techniques to improve your privacy.

RubberGlove क्या है?

RubberGlove Jason S. Clary द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blocks common browser fingerprint techniques to improve your privacy."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RubberGlove एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        RubberGlove aims to reduce the ability of websites to globally fingerprint your browser.  The Electronic Frontier Foundation's website, panopticlick.eff.org, and the associated study shows just how effective these techniques are for tracking you even without cookies.

Currently it wraps the window.navigator and window.clientInformation objects to cloak plugins and mime types similar to the way it's done in Firefox and IE.

Planned future features:
* Ability to add exceptions for specified sites (very soon)
* Reduction of detailed version information both in window.navigator and the http User-Agent header.
* Prevention of time skew and drift fingerprinting
* Prevention of canvas based fingerprinting

Please note that until this plugin or others like it are widely used, Panopticlick will likely still report your browser as unique despite the significant reduction in bits of identifying information.

View the full source at https://github.com/jsclary/RubberGlove                    

एक्सटेंशन की मूल जानकारी

नाम RubberGlove RubberGlove
ID koabfojebhfdjnligkcihoeekimoekpg
आधिकारिक URL https://chrome.google.com/webstore/detail/rubberglove/koabfojebhfdjnligkcihoeekimoekpg
विवरण Blocks common browser fingerprint techniques to improve your privacy.
फ़ाइल का आकार 26.01 KB
स्थापना संख्या 352
वर्तमान संस्करण 14.7.8.0
अंतिम अपडेट 2014-07-11
प्रकाशन तिथि 2014-07-11
रेटिंग 3.48/5 कुल 23 रेटिंग्स
डेवलपर Jason S. Clary
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jsclary/RubberGlove
सहायता पृष्ठ URL https://github.com/jsclary/RubberGlove/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RubberGlove",
    "short_name": "RubberGlove",
    "version": "14.7.8.0",
    "author": "Jason S. Clary",
    "description": "Blocks common browser fingerprint techniques to improve your privacy.",
    "icons": {
        "16": "images\/icon16.png",
        "19": "images\/icon19.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "js": [
                "js\/bomOverload.js",
                "js\/scriptCleanup.js",
                "js\/injectScripts.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "images\/icon19.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "tabs",
        "privacy"
    ],
    "incognito": "spanning"
}