Focus true

Trick JavaScript into thinking the document is focused

Από την 03/02/2015. Δείτε την τελευταία έκδοση.

// ==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;};