Skip to content

Commit

Permalink
Spoof single-core CPU
Browse files Browse the repository at this point in the history
Fixes #181
  • Loading branch information
pyllyukko committed Oct 7, 2017
1 parent 3ef0b6c commit 7d90d71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ HTML5 / [APIs](https://wiki.mozilla.org/WebAPI) / [DOM](https://en.wikipedia.org
* When webGL is enabled, disable webGL extensions [ [1](https://developer.mozilla.org/en-US/docs/Web/API/WebGL_API#WebGL_debugging_and_testing) ]
* When webGL is enabled, force enabling it even when layer acceleration is not supported [ [1](https://trac.torproject.org/projects/tor/ticket/18603) ]
* When webGL is enabled, do not expose information about the graphics driver [ [1](https://bugzilla.mozilla.org/show_bug.cgi?id=1171228) [2](https://developer.mozilla.org/en-US/docs/Web/API/WEBGL_debug_renderer_info) ]
* Spoof single-core CPU [ [1](https://trac.torproject.org/projects/tor/ticket/21675) ]

### Misc

Expand Down
4 changes: 4 additions & 0 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ user_pref("webgl.enable-debug-renderer-info", false);
// somewhat related...
//user_pref("pdfjs.enableWebGL", false);

// PREF: Spoof single-core CPU
// https://trac.torproject.org/projects/tor/ticket/21675
user_pref("dom.maxHardwareConcurrency", false);

/******************************************************************************
* SECTION: Misc *
******************************************************************************/
Expand Down

0 comments on commit 7d90d71

Please sign in to comment.