Looking at the source code of the plugin, there is the following:
function hola_ext_present(){ // Only <html> is present at document_start time, use it as a // storage to communicate presence of extension to web page. document.documentElement.setAttribute('hola_ext_present', 'true'); }
so basically something like:
document.documentElement.getAttribute('hola_ext_present');
will tell you if he is present or not.
source share