RubberGlove
Blocks common browser fingerprint techniques to improve your privacy.
RubberGlove là gì?
RubberGlove là một tiện ích mở rộng Chrome được phát triển bởi Jason S. Clary, và tính năng chính của nó là "Blocks common browser fingerprint techniques to improve your privacy.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng RubberGlove
Tải xuống các tệp mở rộng RubberGlove dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | koabfojebhfdjnligkcihoeekimoekpg |
URL Chính Thức | https://chrome.google.com/webstore/detail/rubberglove/koabfojebhfdjnligkcihoeekimoekpg |
Mô tả | Blocks common browser fingerprint techniques to improve your privacy. |
Kích Thước Tệp | 26.01 KB |
Số Lần Cài Đặt | 352 |
Phiên Bản Hiện Tại | 14.7.8.0 |
Cập Nhật Lần Cuối | 2014-07-11 |
Ngày Phát Hành | 2014-07-11 |
Đánh Giá | 3.48/5 Tổng số 23 Đánh Giá |
Nhà Phát Triển | Jason S. Clary |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jsclary/RubberGlove |
URL Trang Trợ Giúp | https://github.com/jsclary/RubberGlove/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } |