// PLUGIN_INFO//{{{ var PLUGIN_INFO = {NAME} force focuscontent hogelog 0.1.1 2.0pre 2.0pre https://github.com/vimpr/vimperator-plugins/raw/master/forcefocuscontent.js ; //}}} getBrowser().addEventListener("load", onPageLoad, true); function onPageLoad(event) { let doc = event.originalTarget; if (doc != getBrowser().contentDocument) return; setTimeout(function () { let focused = document.commandDispatcher.focusedElement; if (focused) focused.blur(); }, 100); } // vim: fdm=marker sw=4 ts=4 et: