RubberGlove
Blocks common browser fingerprint techniques to improve your privacy.
RubberGlove란 무엇입니까?
RubberGlove은(는) Jason S. Clary에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocks common browser fingerprint techniques to improve your privacy."입니다.
확장 프로그램 스크린샷
RubberGlove 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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" } |