Alters attempts at fingerprinting your screen resolution to 1920x1080. Only tested in FIrefox.
< Feedback on Screen Resolution Spoof
Add window.inner value spoofing
Hi! You can add window.inner value spoofing too so it will be consistent with screen as firefox resists fingerprinting option already do. It looks like this:
Object.defineProperty(window, "innerWidth", { get: function(){return 1920; }}); Object.defineProperty(window, "innerHeight", { get: function(){return 1080; }});
You can test it at http://dev.jeffersonscher.com/resolution.html Thanks for this great script.
Nice! Just updated the userscript to v1.1.0 with your additions.Thanks again, Webster!
उत्तर पोस्ट करण्यासाठी साइन इन करा.
Add window.inner value spoofing
Hi! You can add window.inner value spoofing too so it will be consistent with screen as firefox resists fingerprinting option already do. It looks like this:
Object.defineProperty(window, "innerWidth", { get: function(){return 1920; }}); Object.defineProperty(window, "innerHeight", { get: function(){return 1080; }});
You can test it at http://dev.jeffersonscher.com/resolution.html Thanks for this great script.