Focus true

Trick JavaScript into thinking the document is focused

À partir de 2015-02-03. Voir la dernière version.

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