Natarajan
Natarajan

Reputation: 31

How to Disable hardware acceleration in firefox using javascript?

I want to disable the hardware acceleration in firefox by using jquery or javascript.

Upvotes: 0

Views: 2605

Answers (1)

Gideon Pyzer
Gideon Pyzer

Reputation: 24068

You can disable hardware acceleration for yourself by adding user_pref("layers.acceleration.disabled", true); to you profile's prefs.js file. You cannot change someone else's browser settings.

Upvotes: 4

Related Questions