Focus true

Trick JavaScript into thinking the document is focused

Versión del día 3/2/2015. Echa un vistazo a la versión más reciente.

// ==UserScript==
// @name        Focus true
// @description Trick JavaScript into thinking the document is focused
// @namespace   hugsmile.eu
// @include     http://*
// @version     1
// @grant       none
// ==/UserScript==
document.hasFocus = function () {return true;};